I want to edit the thematic_postheader() so that the author info does not appear. Prior to wordpress 2.7 you were doing this in with the function.php in my childtheme folder. I get a blank page when I do this. Is there another method for doing this in wordpress 2.7?
ThemeShaper Forums » Thematic
thematic postheader
(9 posts)-
Posted 3 years ago #
-
you could try via css
Posted 3 years ago # -
Did you remember to use
<?phpat the beginning of your file and?>at the end?Posted 3 years ago # -
I did it with
.entry-meta .author {
display: none;
}(or delete it in the junction_postheader).
Posted 3 years ago # -
thanks for the css tip!
i absolutely hate going into functions.php because i seem to screw up the code all the time and end up with a non-functioning wordpress, and i'm really just copying and pasting code so i never know what the problem is! and yes i remembered the <?php ?>.... so i dont know what went wrong really. but i dont have to fiddle with it now so :))))
Posted 3 years ago # -
There are postheader and postfooter functions in hooks-filter.php. To modify them, I comment them out (in thematic) and make the versions I want in the child theme's functions.php.
Ian, I notice that thematic's index.php doesn't call thematic_postheader and thematic_postfooter. Why is that? Will there be a problem if I alter index.php to call them?
Posted 3 years ago # -
Never mind. I was looking in the wrong index.php, I see thematic_postheader/footer are there just as they should be.
Carry on.
Posted 3 years ago # -
They don't? They should. I just checked my local copy and they were there.
Posted 3 years ago # -
Oops. Posted at the same time. :)
Carry on.
Posted 3 years ago #
Reply
You must log in to post.