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

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

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