Remove dates from all pages
-
Recently I received help removing the dates from posts and archive pages, but noticed that the date still appears on search and category pages. Here is the code we have used so far. (Remember, we want to keep the EDIT link).
.archive.tag .entry-meta > a:first-of-type, .archive.tag .entry-meta .sep
{
display: none;
}So I need to take the date off the search and category pages, and any other page that it may still be on.
The blog I need help with is: (visible only to logged in users)
-
This is actually a continuation of another thread. I put it here so it stands by itself. The other thread can be found here:
https://en.forums.wordpress.com/topic/making-changes-to-archive-pages
-
Hi, change that CSS rule to this one, which includes the search and category pages.
.archive.tag .entry-meta > a:first-of-type,.archive.tag .entry-meta .sep, .search-results .entry-meta > a:first-of-type, .search-results .entry-meta .sep, .category .entry-meta > a:first-of-type, .category .entry-meta .sep { display:none; } -
Wow. Two things…
1. go figure…that must be shorthand or something, because when I pasted the code in I had to do a double-take. There was a lot more than what I see above. Cool.
2. It works, and I would never have been able to do this by myself. So thanks.
-
- The topic ‘Remove dates from all pages’ is closed to new replies.