i need help conceptually understanding if something like this is possible, and how it would be done:
let's say i have a thematic child theme, and i want to harness different code on different category archives. so for example my website has two categories, "apples" and "oranges." for whatever reason i've decided that i need the date html to be coded differently on the category archive of "apples" while "oranges" and every other page/post will get the standard treatment.
i have my function ready to go:
function childtheme_override_postmeta_entrydate(){
$entrydate = "apples date format goes here";
return apply_filters('thematic_post_meta_entrydate', $entrydate);
}
but this will get applied globally to everything, not even just the category archives.
i am guessing i need to use the hierarchy and make a category-apples.php template -- but is that the best practice and how would i go about achieving the result i want using thematic? i obviously don't want to re-code the page from scratch, but maybe such narrow targeting isn't possible?
stumped! (and still a beginner)