Switch language

wpseek.com
A WordPress-centric search engine for devs and theme authors




wp_trim_excerpt [ WordPress Function ]

wp_trim_excerpt ( $text = '' )
Parameters:
  • (string) $text Optional. The excerpt. If set to empty, an excerpt is generated.
Returns:
  • (string) The excerpt.
Defined at:



Generates an excerpt from the content, if needed.

The excerpt word amount will be 55 words and if the amount is greater than that, then the string ' [...]' will be appended to the excerpt. If the string is less than 55 words, then the content will be returned as is.

The 55 word limit can be modified by plugins/themes using the excerpt_length filter The ' [...]' string can be modified by plugins/themes using the excerpt_more filter

Source


<?php
function wp_trim_excerpt($text '') {
    
$raw_excerpt $text;
    if ( 
'' == $text ) {
        
$text get_the_content('');

        
$text strip_shortcodes$text );

        
$text apply_filters('the_content'$text);
        
$text str_replace(']]>'']]&gt;'$text);
        
$excerpt_length apply_filters('excerpt_length'55);
        
$excerpt_more apply_filters('excerpt_more'' ' '[...]');
        
$text wp_trim_words$text$excerpt_length$excerpt_more );
    }
    return 
apply_filters('wp_trim_excerpt'$text$raw_excerpt);
}
?>

Examples [ wp-snippets.com ]

Google Arama Sonuçlarý

Dahasý ...

0 User Note(s)

Henüz yok. Ýlk sen ol!

Yeni Ekle ...



HTML5 Powered with CSS3 / Styling, Performance & Integration, and Semantics