How to remove the date, author, comment, update date, tags and categories from wordpress

Many of our wordpress theme users asked how to remove the date, author and comment links below the post title, or the update date, tags and categories from the post footer. Some of the following css codes may work for many wordpress themes, but they are rather specific to our wordpress themes. Insert the css code you need into the style.css of the child theme that you can also download from this site.

Remove date below the title:

.entry-meta .posted-on {
	display: none;
}

Remove author below the title:

.entry-meta .byline {
	display: none;
}

Remove comment link below the title:

.entry-meta .comments-link {
	display: none;
}

Remove update date:

.entry-footer .update {
	display: none;
}

Remove tags:

.entry-footer .tags-links {
	display: none;
}

Remove categories:

.entry-footer .cat-links {
	display: none;
}

And if you want to remove the whole post footer (otherwise there is some remaining empty space in the post footer):

.entry-footer {
	display: none;
}