add_filter( 'the_content', function( $content ) { $words = explode( ' ', $content ); $word_count = count( $words ); …
the_content
Strip “read more” anchor link from content so “read more” opens at the top of the page
// Filter to strip anchor link from the content (so "read more" goes to top of page, not anchor location). add_action('the_content', …
Promote your RSS feed on every post
/* * This demo uses the_content filter to add an RSS * link to the end of every post. * * @uses the_content * @uses is_single() …