excerpt_length, 55

excerpt_length, 55

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('excerpt_length, 55') is found 2 times:

  • /jetpack_vendor/automattic/jetpack-classic-theme-helper/src/content-options/blog-display.php line 65
    			$text = strip_shortcodes( $post->post_content );
    			$text = str_replace( ']]>', ']]>', $text );
    			$text = wp_strip_all_tags( $text );
    			/** This filter is documented in wp-includes/formatting.php */
    			$excerpt_length = apply_filters( 'excerpt_length', 55 );
    			$excerpt_length = is_numeric( $excerpt_length ) ? (int) $excerpt_length : 55;
    
    			/** This filter is documented in wp-includes/formatting.php */
    			$excerpt_more = apply_filters( 'excerpt_more', ' [...]' );
    
    			/*
    
  • /modules/theme-tools/content-options/blog-display.php line 67
    			$text = strip_shortcodes( $post->post_content );
    			$text = str_replace( ']]>', ']]>', $text );
    			$text = wp_strip_all_tags( $text );
    			/** This filter is documented in wp-includes/formatting.php */
    			$excerpt_length = apply_filters( 'excerpt_length', 55 );
    			/** This filter is documented in wp-includes/formatting.php */
    			$excerpt_more = apply_filters( 'excerpt_more', ' [...]' );
    
    			/*
    			* translators: If your word count is based on single characters (e.g. East Asian characters),
    			* enter 'characters_excluding_spaces' or 'characters_including_spaces'. Otherwise, enter 'words'.