Viewing 2 replies - 1 through 2 (of 2 total)
  • Using a browser inspector you will see that on your homepage the body class includes “home”.
    So now in your child theme (or custom css) you can target the elements on your homepage, code like:

    .home .entry-meta {
    display:none;
    }

    As an alternative to the CSS that RossMitchell suggested, you could also target just the tags (leaving other entry meta like categories on the page) with code like this:

    .home .tag-links {
    display: none;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘how to hide tags on home page’ is closed to new replies.