limiting the_content, more link
-
How do i add a “read more” link where the … are ?
add_filter('the_content', 'content_intercept'); function content_intercept($content) { //how many characters to show from each post $maxchars = "200"; $newcontent = ''.substr($content, 0, $maxchars).'...'; return $newcontent; }
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘limiting the_content, more link’ is closed to new replies.