• Resolved jgauger0691

    (@jgauger0691)


    Is it possible to remove or suppress the author byline from a single post while not doing so globally? If so, how? Thanks very much.

Viewing 5 replies - 1 through 5 (of 5 total)
  • I don’t think this feature is available. However, there are a few similar settings on the Post Edit screen: Only things that can be adjusted specific to that post. I think this can do it for the Author Box as well.

    Yes, @bensibley. I think this feature can be a nice feature for the development of the theme. 🙂

    Thread Starter jgauger0691

    (@jgauger0691)

    Thank you, @halilesen.

    Theme Author Ben Sibley

    (@bensibley)

    This feature isn’t available, but I can look into adding more post-specific options like this in a future update.

    The closest option right now is to hide the entire byline on an individual post with CSS. This doesn’t allow you to keep the date, but otherwise, works well to target a single post:

    .postid-44 .entry .post-byline {
      display: none;
    }

    You just have to replace “44” with the ID of the post you want to target. If you view the post in the editor, you can find the ID in the URL, bolded in this example:

    website.com/wp-admin/post.php?post=44&action=edit

    Thread Starter jgauger0691

    (@jgauger0691)

    Thank you, Ben. The CSS option is a workable option for my current project. I appreciate your quick response.

    Theme Author Ben Sibley

    (@bensibley)

    Sure thing! Glad I could help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove author byline from single post’ is closed to new replies.