Nested calls the the_content filter
Single filter call Just give this plugin a try. It illustrates the whole technique. <?php /** Plugin Name: (#69351) Example single filter call on <code>’the_content'</code> */ function wpse69351_single_call( $content ) { // Only for single view request (post, page, etc.) if ( ! is_singular() ) return $content; // This removes the filter during its first … Read more