wordpress - How to set get_the_excerpt() limit word in shordcode -


i want limit words in shortcode. i'm trying made wp plugin here need limited words get_the_excerpt{(); functions.

php has many ways : place in functions.php:

function excerpt($num) {         $limit = $num+1;         $excerpt = explode(' ', get_the_excerpt(), $limit);         array_pop($excerpt);         $excerpt = implode(" ",$excerpt)."... (<a href='" .get_permalink($post->id) ." '>read more</a>)";         echo $excerpt;     } 

then, in theme, use code <?php excerpt('22'); ?> limit excerpt 22 characters.

other way : <?php echo substr(get_the_excerpt(), 0,30); ?>

enjoy!!


Comments

Popular posts from this blog

C# random value from dictionary and tuple -

cgi - How do I interpret URLs without extension as files rather than missing directories in nginx? -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -