We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
/** * Callback function for the 'the_content' filter. * * @param mixed $post_content * @return mixed The filtered value. */ function my_the_content_callback( $post_content ) { // Your code here. return $post_content; } add_filter( 'the_content', 'my_the_content_callback' );
$post_content
\apply_filters( 'the_content', $post->post_content )
← All Hooks