Viewing 2 replies - 1 through 2 (of 2 total)
  • There are a few ways of doing what you want.
    First is to see if you have a page.php file in your theme directory. If you do, find <?php the_date(); "> in it and change it to <?php// the_date(); "> (the // stops it working).

    Second option (if you don’t have page.php) is to find index.php in your theme folder, save a copy of it as page.php. The do step 1.

    Third option (which may not work exactly as expected) is find <?php the_date(); "> in index.php and replace it with the following code:
    <?php if (!is_page()) { ?>
    <?php the_date(); ?>
    <?php } ?>

    Hope one of these works.

    Thread Starter Chelsea

    (@chelsea)

    THANK YOU SO MUCH! ??

    By the way.. I did the first one, for reference’s sake.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘removing the date from pages?’ is closed to new replies.