Randy Brown
asked 10 years ago

I would like to remove the “by authorname /” on category listings and the front page.  Hopefully just a simple CSS tweak?

1 Answers
DominicStaff
answered 10 years ago

 To remove the “by authorname /” on category listings and the front page, you can log in to Dashboard > Appearance > Customize > Custom Code , add the following code to the Header Code: 

 <style>
.home .entry-meta .author {
display: none;
}

.home .sep {
display: none;
}
.category .entry-meta .author {
display: none;
}
.category .sep {
display: none;
}
</style>

Hope this helps !

Mike Burgess
replied 10 years ago

Thank you. How would I keep the author there but change it to the WP display name?

Powered by DW Question & Answer Pro