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 $object->post_content * @return mixed The filtered value. */ function my_the_content_callback( $object->post_content ) { // Your code here. return $object->post_content; } add_filter( 'the_content', 'my_the_content_callback' );
$object->post_content
$post_content
\apply_filters( 'the_content', $this->object->post_content )
\apply_filters( 'the_content', $post->post_content )
← All Hooks