Can I remove the date and author name from a post?
-
Question is in the title. I want to use a post for the main page, but I want to take off the date and author that is usually there and I can’t figure out how to do it.
The blog I need help with is: (visible only to logged in users)
-
-
There is no free way to suppress display of theme elements.
See here for details on purchasing the annually renewable Premium bundle http://store.wordpress.com/plans/premium/ that contains a custom design upgrade required for CSS editing:
Custom design – Frequently Asked Questions such as: I’m not sure if Customize is right for me. Can I try before I buy?
http://en.support.wordpress.com/custom-design/#frequently-asked-questions
http://en.support.wordpress.com/custom-design/
http://en.support.wordpress.com/custom-design/editing-css/
http://en.support.wordpress.com/custom-design/custom-fonts/
Note 1: Once you have the required upgrade you can use this link https://en.forums.wordpress.com/forum/css-customization#postform so you can create a thread that will appear in the CSS Forum where you will get the help you need with CSS editing.
Note 2: You can also post there prior to purchasing an upgrade to get an answer to whether or not what you want to do can be accomplished via CSS editing. -
Oh no! I am so sorry. This thread is already in the CSS forum. Please be patient while waiting for Staff help.
-
Hi there,
Question is in the title. I want to use a post for the main page, but I want to take off the date and author that is usually there and I can’t figure out how to do it.
Have you considered using a page rather than a post for your main page? I ask because pages don’t have a date or author name displayed on them and may better suit your needs in this case.
If your certain that a post is best suited to your needs, then you can remove the meta information from all posts using the following CSS:
.entry-meta { display: none; }If you let me know the specific post you’re trying to hide the information from, I can help with that specific CSS too.
-
Hi,
I would like to remove the date on all of my posts (both existing and future) would I use the code that Siobhyb posted? If yes, then where do I place it?
Thanks!
-
You will need an upgrade that includes CSS customisation in order to hide the dates, it’s not something you can do with a free plan.
The CSS code you need is dependent on the theme you use, for your site using the Lovecraft theme you can use the following code:
.entry-meta .posted-on { display:none; } .entry-meta > span.byline::before { content: ""; margin: 0; }You can preview it to see if the upgrade is worth it using the CSS section of the customiser.
-
Hi, I’m using Arcane and would like to remove the author, dates and gravatar but when I enter the code above, none is in red and nothing changes. Does Arcane use different .entry-meta name?
Thanks!
-
Hi Joan, it looks like you have used “no” instead of “none”. Try this to remove the author and date below all post titles and to remove the author image at the bottom of posts and shift the bio back to the left to take up the extra space:
.entry-meta, .author-avatar {display:none;} .author-info .author-description {width:100%; padding:0;}If you want to remove the bio completely using CSS then try this instead:
.entry-meta, .author-info {display:none;} -
What theme are you using and are you on one of the paid plans? It would help if you post the URL of your site so I can take a look.
-
@ckjacksonwrites, since you are using a different theme, and since CSS is generally theme specific, can I ask you to create a new thread in the CSS Forum? Many thanks in advance.
- The topic ‘Can I remove the date and author name from a post?’ is closed to new replies.