On single.php / post article pages, is it possible to display the post author for certain categories only? For example, I would like to show the author meta for categories Red, Orange, Blue, and not show the author for categories Green and Yellow.
Hey kristenangel!
Add this to your custom CSS.
.category-green .blog-author, .category-red .blog-author { display: none !important; }
And change “green” and “red”, etc etc, to whatever categories you want to hide it on.
Best regards,
Elliott
Thanks, Elliott. It doesn’t seem to be working, though. Can you check?
Hey!
You need to use this.
.category-lawlor-focus .blog-author { display: none !important; }
Best regards,
Elliott
Ohh… I thought ‘category’ was an example. Got it now! Thank You!