adro.gross
Member
Posted 3 months ago #
Hello,
I am trying to remove the blog title and image in the header from all "pages" but keep it on the homepage of http://www.marydolce.com. I have tried creating a new template but all of the formatting disappears. Any help would be greatly appreciated.
Thank you,
Adrian
you might be able to use a conditional statement around the blog title and image;
http://codex.wordpress.org/Conditional_Tags
possible using is_front_page()
example:
<?php if( is_front_page() ) : ?>
ALL THE CODE FOR THE BLOG TITLE AND HEADER IMAGE HERE
<?php endif; ?>
adro.gross
Member
Posted 3 months ago #
That worked perfectly! Thanks very much for your help.
- Adrian
kreacio
Member
Posted 3 months ago #
Where to find this code?
possibly in header.php of a WordPress theme ...