Twenty ten theme – show blog title on all but the homepage
-
Hi,
As the title suggests I want to show the page title on all pages EXCEPT for the homepage – this is because the image on the homepage has the title incorporated.In the header.php I have tried changing this:
<?php $heading_tag = ( is_home() || is_front_page() ) ? ‘h1’ : ‘div’; ?>to this
<?php $heading_tag = ( !is_home() || !is_front_page() ) ? ‘h1’ : ‘div’; ?>(so adding the ! to make it a NOT)
but that didnt work.
Can anyone help?
Thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Twenty ten theme – show blog title on all but the homepage’ is closed to new replies.