how to remove read more when full text is on in wordpress?
-
the code looks like this
function new_excerpt_length($length) { return 100; } add_filter('excerpt_length', 'new_excerpt_length');
there is an option in wp-admin>settings>reading>For each article in a feed, show if this is set to full text the excerpt() must return full length article instead of specified length.
how to do this?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘how to remove read more when full text is on in wordpress?’ is closed to new replies.