Title: Remove Author Bio in posts
Last modified: August 22, 2016

---

# Remove Author Bio in posts

 *  Resolved Anonymous User 13912904
 * (@anonymized-13912904)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/)
 * Hi,
    how to remove the annoying Author Bio that appears automatically in each
   post, page, etc.? DIrk

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/topic/remove-author-bio-in-posts/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/remove-author-bio-in-posts/page/2/?output_format=md)

 *  [Bojan Radonic – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support4/)
 * (@wpmudev-support4)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661555)
 * Hey there dzhome,
 * Hope you’re well today!
 * Try adding the following CSS code in the style.css file of your [child theme](http://codex.wordpress.org/Child_Themes)
   or add it in your site using the following plugin:
 * [http://wordpress.org/plugins/simple-custom-css](http://wordpress.org/plugins/simple-custom-css)
 *     ```
       .meta-author {
       display: none;
       }
       ```
   
 * This should remove the author meta form both blog page and single post pages.
 * Hope this helps 🙂
 * Cheers,
    Bojan
 *  Thread Starter Anonymous User 13912904
 * (@anonymized-13912904)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661558)
 * Hi,
    thanks for the hint but this does not work. Both ways not working. Dirk
 *  [Bojan Radonic – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support4/)
 * (@wpmudev-support4)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661572)
 * Hey again Dirk,
 * Could you please post link to your site so I can take a look?
 * Cheers,
    Bojan
 *  Thread Starter Anonymous User 13912904
 * (@anonymized-13912904)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661573)
 * Can you give me your mail address. I need to send login data and don’t want to
   post it here…
 *  [Andrew Nevins](https://wordpress.org/support/users/anevins/)
 * (@anevins)
 * WCLDN 2018 Contributor | Volunteer support
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661574)
 * Unfortunately you won’t be able to provide your website link and that will be
   a barrier to those trying to help you.
 *  Thread Starter Anonymous User 13912904
 * (@anonymized-13912904)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661575)
 * Yes, my website is restricted to users only. I am able to provide a link, but
   to see what happens one needs the login data. Im am willing to provide these 
   data, but not post it here.
 *  [Bojan Radonic – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support4/)
 * (@wpmudev-support4)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661576)
 * Hey Dirk,
 * There is no need for sedning credentials, I just need to see your site so I can
   use inspector and target the correct class 🙂
 * Cheers,
    Bojan
 *  Thread Starter Anonymous User 13912904
 * (@anonymized-13912904)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661577)
 * Ok Bojan,
    thanks: [http://wandergruppe-rhein-main.de](http://wandergruppe-rhein-main.de)
   Cheers, Dirk
 *  [Bojan Radonic – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support4/)
 * (@wpmudev-support4)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661579)
 * Hey Dirk,
 * Oh I’m sorry I misunderstood and posted before I could see your post. I already
   tried installing the theme, that’s how I provided the code in the first place.
 * Please try adding this:
 *     ```
       .meta-author {
       display: none !important;
       }
       ```
   
 * Normally I wouldn’t suggest the use of the !important declaration. However, it
   can sometimes be a necessary evil when over-writing existing styles.
 * If this doesn’t work I can’t really help you more if not being able to see blog
   or single post page. Sorry 🙁
 * Best regards,
    Bojan
 *  Thread Starter Anonymous User 13912904
 * (@anonymized-13912904)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661602)
 * Hi Bojan,
 * no worries. The code you pasted above does also not work.
 * Here is an accessible part of my website. There you can see what happens.
 * [http://www.wandergruppe-rhein-main.de/seite-geht-nun-wieder/](http://www.wandergruppe-rhein-main.de/seite-geht-nun-wieder/)
 * Cheers,
    Dirk
 *  [campanula](https://wordpress.org/support/users/campanula/)
 * (@campanula)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661667)
 * I have:
 *     ```
       .meta-author, .meta-author-prep, .meta-author.link {
           display: none;
       }
       ```
   
 * And my child theme works… So maybe it’s the extra sections which are still appearing…
 * Hope that helps!
    Campanula
 *  Thread Starter Anonymous User 13912904
 * (@anonymized-13912904)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661668)
 * Hi Campanula,
    no, this does not help. It only results in that I do not see the
   name of the author of the post anymore. But this stupid bio stuff is still there.
   Regards, Dirk
 * p.s.: I have removed now my bio-information in my profile. This is a workaround
   but not a solution for ever.
 *  [Bojan Radonic – WPMU DEV Support](https://wordpress.org/support/users/wpmudev-support4/)
 * (@wpmudev-support4)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661669)
 * Hey again Dirk,
 * You can try the code Campanula suggested, both author prep and link are child
   elements of author element [http://screencast.com/t/ivR45pGRv](http://screencast.com/t/ivR45pGRv)
   and I’m not sure that will make any difference.
 * Is the code added now or you removed it?
 * Cheers,
    Bojan
 *  Thread Starter Anonymous User 13912904
 * (@anonymized-13912904)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661670)
 * Thanks, Bojan, I removed the code already. It does not provide any benefit.
 *  Thread Starter Anonymous User 13912904
 * (@anonymized-13912904)
 * [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/#post-5661738)
 * Hi,
    any other idea? Still looking for a solution. Thanks. Dirk

Viewing 15 replies - 1 through 15 (of 20 total)

1 [2](https://wordpress.org/support/topic/remove-author-bio-in-posts/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/remove-author-bio-in-posts/page/2/?output_format=md)

The topic ‘Remove Author Bio in posts’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/wpstart/1.2.7/screenshot.png)
 * WPstart
 * [Support Threads](https://wordpress.org/support/theme/wpstart/)
 * [Active Topics](https://wordpress.org/support/theme/wpstart/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/wpstart/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/wpstart/reviews/)

 * 20 replies
 * 5 participants
 * Last reply from: Anonymous User 13912904
 * Last activity: [11 years, 3 months ago](https://wordpress.org/support/topic/remove-author-bio-in-posts/page/2/#post-5661748)
 * Status: resolved