How can I display the_title only on posts but not on pages?
Thanks for your help!
How can I display the_title only on posts but not on pages?
Thanks for your help!
try
<?php if(is_page() == false): ?>
// title code goes here
<?php endif; ?>Thanks, chaoskaizer
You could also create a Page template -- see Pages for more info.
This topic has been closed to new replies.