• Hello – I am so new to word press, like sooooo new… Anyways, i am using the sketch theme and noticed i cant have my name in the blog post section, as an author. How can i add this? Is there a way to set up different authors?

Viewing 1 replies (of 1 total)
  • the author is hidden in the index pages, unless your site uses more than one author of posts.

    the responsible CSS section from style.css is:

    .byline,
    .updated {
      display: none;
    }
    
    .single .byline,
    .group-blog .byline {
      display: inline;
    }

    overwrite that in style.css in a child theme or via a ‘custom CSS’ plugin, by adding:

    .byline { display: inline; }

    to setup additional, different authors, add new users via the ‘dashboard – users’ panel, with the ‘author’ role …

Viewing 1 replies (of 1 total)
  • The topic ‘Add Authors name to blog posts’ is closed to new replies.