• I’m wondering if there’s any way to have a banner posted under each article which belongs to one particular category. Thank you for any help.

Viewing 1 replies (of 1 total)
  • One way, without plugin, is to update your theme file single.php and use conditional code:

    <?php if (in_category('your-category-id')) : ?>
        <!-- Your banner HTML or image code here -->
    <?php endif; ?>
    
Viewing 1 replies (of 1 total)
  • The topic ‘Looking for a way to post a banner under each post of one category’ is closed to new replies.