Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi there!

    Try pasting this code in your theme’s custom css or child theme style.css . You can read about child themes here.

    .byline {
      display: none !important;
    }

    I hope that helps!

    Luke the Daft Duke

    Moderator Kathryn Presner

    (@zoonini)

    Another variation you can try is a more specific CSS rule, to avoid using !important:

    .entry-header .byline {
      display: none;
    }

    Either should do the trick.

    Thread Starter liquidham82

    (@liquidham82)

    Thanks both, took out the author straight away, is there a way to remove the date as well?

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    To take our all of the meta data, remove what was given above and add this instead.

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

    Thread Starter liquidham82

    (@liquidham82)

    Fantastic! Thanks everyone, appreciated.

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    You are welcome.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove Author Info’ is closed to new replies.