Quantcast Limit WordPress Post Or Page Content | Source and Code System
Browsing articles tagged with " Limit WordPress Post or Page Content"

Limit WordPress Post or Page Content

Jun 17, 2010  ¦¦  by admin  ¦¦  WordPress  ¦¦  36 Comments
Copy this function and paste in the function.php ———— function dp_clean($excerpt, $substr=0) { $string = strip_tags(str_replace(‘[...]‘, ‘…’, $excerpt)); if ($substr>0) { $string = substr($string, 0, $substr); } return $string; } Call this function in your index.php ———– < ?php echo dp_clean($post->post_content, 250); ? >