Different post setting for categories

Posted in: Newspaper
Post count: 6

Hi,

I want to show the Author Box on some of my categories, not on all of them. The setting “Post Setting > Show author box” is for all posts. Is this possible?

Post count: 22421

Hello,

You can select the author box to be set based on a condition. You ca try this function:
https://developer.wordpress.org/reference/functions/in_category/
You can wrap the code in the condition like so:
<?php
if (!in_category( array( 'Gadgets', 'Lifestyle' ) )){
echo $td_mod_single->get_author_box();}?>
<?php echo $td_mod_single->get_item_scope_meta();?>

This code ill remove the author box for the specified categories. In my case, lifestyle and gadgets
You can replace this code on the post style that you use:
https://www.screencast.com/t/zGsv90vivJg

Than you!

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