I would like to remove the “by authorname /” on category listings and the front page. Hopefully just a simple CSS tweak?
1 Answers
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 !
Thank you. How would I keep the author there but change it to the WP display name?
Please login or Register to submit your answer