• surf4444

    (@surf4444)


    Hello,

    How do I hide who is posting each post? For instance, it now says “Posted by GUILDMORTGAGE on OCTOBER 27, 2016” and I would like it to only read “Posted on OCTOBER 27, 2016”

    Jon

Viewing 3 replies - 1 through 3 (of 3 total)
  • Siobhan

    (@siobhyb)

    Hi Jon,

    The most straightforward way of hiding the author’s name would be to use some custom CSS.

    To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)

    Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:

    .is-singular .byline, .group-blog .byline {
        display: none;
    }
    
    .posted-on:before {
        content: "Posted ";
    }

    Hope that helps out! Let us know if any extra questions come up.

    Thread Starter surf4444

    (@surf4444)

    That worked, thanks!

    Siobhan

    (@siobhyb)

    Perfect! You’re most welcome. ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to hide Author Name’ is closed to new replies.