• Hi Crawford Theme lovers

    Hi wp fans and Crawford theme fans, Can anyone here with me to find a solution for my query- how to remove dates from Crawford theme?
    Immediate response is awaiting

    regards
    sree

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Hi there!

    Taking a quick look at the theme it looks like it uses the class post-date for the line:

    <p class="post-date"><?php the_date(); ?> by <?php the_author(); ?> <?php if (is_sticky()) : ?> - Featured<?php endif; ?></p>

    Do you want to completely remove that entire line? If so, you can use CSS to remove that by hiding it; something like:

    .post-date {
      display: none;
    }

    Now, if you wanted to remove just the post date you can create a child theme, create a duplicate content.php file, and then edit out what you don’t want to use.

    Hope that helps. ??

    Thread Starter sreekanthgopinathan

    (@sreekanthgopinathan)

    Hi Jose,

    Thanks! Here it worked well. I just applied that css Coding to remove post date. However, for a Clarification i am asking you twomore questions –
    1) is my hidden date from my website is visible to google alogaritham?
    2) Is My website’s published post date will again appear in Google search results?

    This article might be helpful for you

    https://www.seroundtable.com/google-display-none-20626.html

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How To remove post date from Crawford theme?’ is closed to new replies.