I need to remove all metadata, except the Author.
I tried:
.blog .entry-header .p-meta > span:nth-child(1), .single .entry-header .p-meta > span:nth-child(1) {
display: none;
}
.blog .entry-header .p-meta > span:nth-child(2), .single .entry-header .p-meta > span:nth-child(2) {
display: none;
}
but that removes everything.
I tried changing ‘none’ to ‘author’.. Of course all that that did was highlight my lack of skills..