• Hi Everyone,

    I was hoping you could help me. I would like to remove the “posted by admin” in the posts that I create for my blog.

    If you notice, right under the heading of my blog post heading it says,”Posted by admin in Blog”. I would like to be able to remove that text from all my blogs. Here is the link to the blog page https://www.eseaweednutrition.com/category/blog.

    Thanks for the help.

Viewing 9 replies - 1 through 9 (of 9 total)
  • Either post at your theme dev.’s site and inquire with same question or review the theme’s template files for ‘posted by’ and remove it (always keep a backup).

    You cannot remove just the posted by part without also removing the rest of the line including categories and comments… unless you go in and modify core theme files which is HIGHLY frowned upon. This is because of the way your theme is coded.

    However, if you would like to hide the entire line from being shown, simply add this to your custom css:

    .post small {
        display: none;
    }

    This will remove all of the content not just the admin text and link. no?

    Correct. It will remove the posted by… the author name.. the tags used… and the comments. Basically everything in the .post small class.

    Thread Starter mattd71

    (@mattd71)

    OK, I’ll give it a try and see what happens. Thanks for the help!

    Thread Starter mattd71

    (@mattd71)

    Josh and Swanson,

    I’m sorry, I’m still learning WordPress and I thought I could find where I need to put the ” .post small {display: none;}” code but I can’t find where to put it.

    I know Josh mentioned adding it to my custom CSS but when I go into the editor in WordPress for the theme I’m using, the theme is called “Delicate”, I have no idea where to add the code.

    Can you help me with this, I would really be thankful.

    Well, you should be using a child theme to make custom css modifications. Is your theme a premium theme? IF so, contact the developer and ask about creating a child theme.

    You can also find out information about it here:
    https://codex.www.ads-software.com/Child_Themes

    Then, you would add the code I gave you above to the “style.css” file in your child theme folder.

    If you add the code to your theme’s stylesheet, it will be overwritten whenever you update your theme. Which is why it’s crucial to use a child theme. Changes in the child theme are never overwritten.

    Thread Starter mattd71

    (@mattd71)

    Thanks, it worked!

    My pleasure.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Removing "Posted By" in posts?’ is closed to new replies.