Remove Post Meta and Post Info in WordPress Twenty Fifteen Theme
Ultimate guide to remove post meta and post info in 2015 WordPress theme. Twenty fifteen WordPress theme is a clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. The team designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.
In Genesis and many WordPress themes,there will be post info ( author, date and comments) and Post metadata (category and tag) fields.But in Twenty fifteen theme (default theme from WordPress 4.1 version), there is only one field called .entry-footer, which displays author, date of published, category and tag information.
You can easily remove post metadata and post info in twenty fifteen theme with the following code.This code should be added to your WordPress twenty fifteen child theme's style.css file.
.entry-footer {
display:none !important;
}
The above code will remove all post metadata and post info from your all posts.
If you want to show post info and post meta for single post but not in home page, then here's the great solution to remove post information from blog/home page.This code also be add to your twenty fifteen child theme's CSS file.
.home .entry-footer {
display: none;
}
It's totally your choice to remove post info and meta from only home page or for all posts in your WordPress website.
Note: Image capture taken from top engineering colleges website, which is my another website, using 2015 WordPress theme.
Still are you facing problems, no worry, drop a comment, i will help you to remove post info and metadata from you WordPress website.
One says
Thanks!!!
Deix says
I would like to hide the Date and Author of the Post in the Twenty fifteen WordPress theme. Is there any other CSS selector , ala ".entry-footer", to select the Post Date and the Post Author? Thanks!
Yep says
Your solution worked like a charm. I usually don't leave comments like that, but hope that this one will help you to keep up the good work.
Niv Calderon says
I was successful in removing the meta and info from the post, but i didnt succeed in hiding it from the homepage. What can I do?