the_excerpt, $post->post_excerpt

the_excerpt, $post->post_excerpt

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('the_excerpt, $post->post_excerpt') is found 1 times:

  • /jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php line 782
     
    			$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 );
    			}
    		}