jetpack_seo_front_page_description_max_length, 300

jetpack_seo_front_page_description_max_length, 300

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: jetpack.16.0.1

apply_filters('jetpack_seo_front_page_description_max_length, 300') is found 1 times:

  • /modules/seo-tools/class-jetpack-seo-utils.php line 103
    		 * @since 4.4.0
    		 *
    		 * @param int Maximum length of front page meta description. Defaults to 300.
    		 */
    		$description_max_length = apply_filters( 'jetpack_seo_front_page_description_max_length', 300 );
    
    		if ( function_exists( 'mb_substr' ) ) {
    			$front_page_description = mb_substr( $front_page_description, 0, $description_max_length );
    		} else {
    			$front_page_description = substr( $front_page_description, 0, $description_max_length );
    		}