Thanks for your help, helgatheviking. I really like your parking analogy, and after resisting the urge to run away screaming from the code, I've spent some time on your tutorial and managed to hobble together something. Unfortunately my results are not very good...
First, the code I tried, starting with baby steps and trying to remove the postmeta:
function childtheme_override_postheader_postmeta($postmeta) {
if (is_sticky()) {
$c[] = 's-sticky';
$postmeta = ''; }
return apply_filters('thematic_postheader_postmeta',$postmeta);
}
This gives error:
Fatal error: Cannot redeclare childtheme_override_postheader_postmeta() (previously declared in /functions.php:54) in /functions.php on line 103
Oopsie, I had previously asked it to remove the author bits on regular posts. So at first glance, initially, that's the cause of the error. But, are my logic and syntax even on the right track? Should my "if" part come before the function part, or should my "if" be added to the previous filter that removed the author part? (http://forums.themeshaper.com/topic/removing-by-author-from-post-in-v-0977)
I have difficulty in deciphering, whether they be function/action/hook/filter, what is an_example_name which I could replace with my_custom_name, versus what is the_official_name and therefore I must use the_official_name.
I fear I am completely revealing my ignorance here, and I thank you hugely for any and all help.