Easy Excerpt Mods on WordPress 2.9


Sponsored Links




WordPress 2.9 brings some new features, one of new features is Easy Excerpt Mods via little bit coding on our functions.php theme. Here some tricks how to change excerpt length via this tricks

Open your functions.php and add this code

function new_excerpt_length($length) {
	return 20;
}
add_filter('excerpt_length', 'new_excerpt_length');

This code above will be reduce excerpt length become 20, on this code below, we will try to change excerpt more, the default is … with this tricks we can made it different style, put this code below the code before on your functions.php

function new_excerpt_more($more) {
	return '[.....]';
}
add_filter('excerpt_more', 'new_excerpt_more');

This code I got from bavotasan

Subscribe to Full RSS Feed

RSS FeedIf you thing this article useful, please consider subscribing to our RSS Feed or e-mail updates and stay updated with us. You can also follow @WPTricksNet on twitter for latest updates.

About WP Tricks

We are WordPress Family, we collected and writed useful tips and tricks for you WordPress. We share it for you...

Related Tips and Trick from Local Data and on The Net

Excerpt or Content Word Limit in WordPress: Redux | bavotasan.com

There is a new function with WP 2.9 to increase this number. Check out Quick & Easy Excerpt Mods Coming in WordPress 2.9 for more on that subject. Read More

WordPress 2.9 Enhancements Every Developer Must Know | W3Avenue

Quick & Easy Excerpt Mods Coming in WordPress 2.9; Sidebar Descriptions. In complex themes with lots of sidebars it is very challenging to keep track of what each sidebar is Read More

WordPress › Support » Display first 25 words of excerpt on

Try this technique. http://wptricks.net/easy-excerpt-mods-on-wordpress-2-9/ works perfectly at the moment so if there's an easy way of getting the full excerpt Read More

Create you own Excerpt in WordPress / WordPress Tricks & Tips

Sometimes we need to limit how many words will be displayed in our excerpt, If you have use WordPress 2.9.x you can use Easy Excerpt method, but if you want something Read More

Carlos Cancel - Pipl Directory

pieces of code and thought that they might be useful to some people out there who want to mess around with the defa [ Quick & Easy Excerpt Mods Coming in WordPress 2.9 Read More


2 Responses to Easy Excerpt Mods on WordPress 2.9

  1. Pingback: designfloat.com

  2. Pingback: How To Create you own Excerpt and Replace Original Excerpt # WordPress Tricks & Tips

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>