Author box only on certain categories

Posted in: Newspaper
Post count: 24

Hello,
Normally, we don’t show the author’s box at the bottom of a post. Now, we want to do a op-ed section of our homepage, with some guest authors. So it would be nice to show the bios of the authors at bottom of these posts. They would all be part of a certain category. Is it possible to show the author bio only on certain categories?
kind regards,
Herwig

Post count: 22421

Hello,

In order to do this you would have to add conditions in the code to filter a particular category on the authors box element. Here is an example:
<?php if ( in_category('fruit') ) {
echo $td_mod_single->get_author_box();
}?>

Use this code instead of the default get_author_box code:
https://www.screencast.com/t/oYXGUaigh
You have to make this modification for each of the post styles that you use. Each post style has it;s own file like shown in the above screenshot

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.