/ Published in: PHP
URL: http://scottnix.com/code/wordpress/thematic-snippets/
Converts categories to Full Content posts instead of default excerpt.
Expand |
Embed | Plain Text
// show full excerpt on categories function snix_thematic_content($content) { if (is_category()) { $content= 'full'; } return $content; } add_filter('thematic_content', 'snix_thematic_content');
You need to login to post a comment.
