Current Path : /var/test/www/html/37thanniversary/wp-content/themes/brando/lib/ |
Current File : /var/test/www/html/37thanniversary/wp-content/themes/brando/lib/brando-excerpt.php |
<?php /** * Excerpt Class. * * @package brando */ ?> <?php /** * Exerpt length * * @package framework * @since framework 1.0 */ if(!class_exists('brando_Excerpt')){ class brando_Excerpt { /** * Sets the length for the excerpt * * @param string $brando_new_length * @return void */ public static function brando_get_by_length($brando_new_length = 55) { return brando_Excerpt::brando_get($brando_new_length); } public static function brando_get($brando_new_length) { $brando_output_data = ''; $content = get_the_content(); $pattern = get_shortcode_regex(); if( get_the_excerpt() ){ $brando_output_data = get_the_excerpt(); }else{ $brando_output_data = preg_replace_callback( "/$pattern/s", 'brando_extract_shortcode_contents', $content ); } if( $brando_new_length > 0 ){ $brando_output_data = wp_trim_words( $brando_output_data, $brando_new_length, '...' ); }else{ $brando_output_data = wp_trim_words( $brando_output_data, $brando_new_length, '' ); } return $brando_output_data; } } }