mographdesigner
Member
Posted 2 years ago #
I would like to remove the dates on all pages except my blog page(front page)
. It tried doing this:
http://wordpress.org/support/topic/330347?replies=3
But when I tried that suggestion all the dates on all pages were gone except for the front page.
Can someone help me out? Thanks and God bless.
Look at using Conditional Tags
Something like:
<?php
if ( is_page('42') || is_front_page() ) {
// display your date
}
?>
mographdesigner
Member
Posted 2 years ago #
How do I paste that on my particular page? What part of the page am I going to paste it? Sorry, I'm not a coder, just a designer. Thanks and God bless!
mographdesigner - you will need to understand WordPress Template Hierarchy and study up on Page Templates.