I need to show full posts on my category pages. I have an art and video blog, so excerpts kind of kill the visual aspect.
I posted this question on a related thread and got this response from Chris:
Hi,
try this code in your child theme's functions.php:
function childtheme_content($content) { if (is_category()) { $content= 'full';} return $content; } add_filter('thematic_content', 'childtheme_content');Chris
Unfortunately this hasn't worked for me. Probably my own doing because I have no PHP knowledge. I've tried inserting this code in several different parts of my functions.php, but never with any results.
Any suggestions? Do I need to insert the code on a specific line? Am I supposed to fill in any info of my own into the code?