patrick6000 0 Report post Posted January 2, 2011 I've tried to change the lenght of the excerpt with this filter add_filter('excerpt_length', 'my_excerpt_length'); function my_excerpt_length($length) { return 20; } It doesn't seem to work. Does somebody know how to fix this ? Thanks Share this post Link to post Share on other sites
catrina 103 Report post Posted January 2, 2011 Are you adding this to your functions file? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
patrick6000 0 Report post Posted January 2, 2011 yes Share this post Link to post Share on other sites
catrina 103 Report post Posted January 2, 2011 function new_excerpt_length($length) { return 20; } add_filter('excerpt_length', 'new_excerpt_length'); The code above is the updated excerpt length code. Try adding that one instead. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
patrick6000 0 Report post Posted January 2, 2011 thank you Catrina but it doesn't seem to work better Share this post Link to post Share on other sites
catrina 103 Report post Posted January 2, 2011 Can you please post a link to your site? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
patrick6000 0 Report post Posted January 2, 2011 here you are http://camp.marseille2013.org/category/unes/ Share this post Link to post Share on other sites
Andrew 207 Report post Posted January 3, 2011 Hey Eric, Did that get it fixed? Share this post Link to post Share on other sites
patrick6000 0 Report post Posted January 3, 2011 no Share this post Link to post Share on other sites
cmunns 16 Report post Posted January 3, 2011 Did you set the priority correctly? It states below that you may run into problems if the priority is not set. http://codex.wordpress.org/Plugin_API/Filter_Reference/excerpt_length#Examples Share this post Link to post Share on other sites
patrick6000 0 Report post Posted January 3, 2011 Hi cmunns, I've already checked that, but still doesn't work Eric Share this post Link to post Share on other sites
patrick6000 0 Report post Posted January 3, 2011 Hi, my apologies to all of you, i didn't read carefully the wordpress doc. I didn't know about the difference between "Excerpt" and "automatic excerpt" Eric Share this post Link to post Share on other sites