the_content, $content

the_content, $content

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.28.1

apply_filters('the_content, $content') is found 1 times:

  • /src/builders/indexable-link-builder.php line 140
    			\setup_postdata( $post );
    
    			// The below hook primes the post and meta caches for all wp-image-<ID> images.
    			// So the image loop in create_links() hits warm caches — no additional priming is needed there.
    			$content = \apply_filters( 'the_content', $content );
    			\wp_reset_postdata();
    			// phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited -- To setup the post we need to do this explicitly.
    			$post = $post_backup;
    		}
    
    		$content = \str_replace( ']]>', ']]&gt;', $content );