the_content, $post->post_content

the_content, $post->post_content

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('the_content, $post->post_content') is found 3 times:

  • /extensions/blocks/map/map.php line 238
    	}
    
    	$post_html = new \DOMDocument();
    	/** This filter is already documented in core/wp-includes/post-template.php */
    	$content = apply_filters( 'the_content', $post->post_content );
    
    	// Return early if empty to prevent DOMDocument::loadHTML fatal.
    	if ( empty( $content ) ) {
    		return;
    	}
    
    
  • /jetpack_vendor/automattic/jetpack-blaze/src/class-dashboard-rest-controller.php line 1077
    		if ( ! $post ) {
    			return new WP_Error( 'post_not_found', esc_html__( 'Post not found', 'jetpack-blaze' ), array( 'status' => 404 ) );
    		}
    
    		$rendered_content = apply_filters( 'the_content', $post->post_content );
    
    		$body = array(
    			'wp_post' => array(
    				'ID'      => $post->ID,
    				'title'   => $post->post_title,
    				'URL'     => get_permalink( $post ),
    
  • /jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php line 781
    			 */
    
    			$is_syncing_current = Settings::is_syncing();
    			Settings::set_is_syncing( true );
    			$post->post_content_filtered = apply_filters( 'the_content', $post->post_content );
    			$post->post_excerpt_filtered = apply_filters( 'the_excerpt', $post->post_excerpt );
    			Settings::set_is_syncing( $is_syncing_current );
    
    			foreach ( $removed_shortcode_callbacks as $shortcode => $callback ) {
    				add_shortcode( $shortcode, $callback );
    			}