• I am using the Blue Grace theme and when I do a new post my email address and a date appears below each post title. ex: “myname@wordpress.org on September 22nd, 2012”

    How do I prevent my email from appearing under each title? Any detailed help would be very much appreciated.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Have you got a link to your site?

    By default the Blue Grace doesn’t use your email address under posts, so please check inside wordpress under Users that your username is not an email address. If you really want to hide the information open the file: wp-content/themes/blue-grace/index.php at line 53 you should fine:

    <?php if (!is_singular()): ?>
        <div class="endate"><?php the_author(); _e(' on ', 'blue-grace'); the_time(__(get_option( 'date_format' ), 'blue-grace')); ?></div>
    <?php endif; ?>

    change it to:

    <?php if (!is_singular()): ?>
        <div class="endate"><?php the_time(__(get_option( 'date_format' ), 'blue-grace')); ?></div>
    <?php endif; ?>

    and it should be gone.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Email removal using Blue Grace theme’ is closed to new replies.