chihung
2/28/2020 - 7:58 AM

If you are looking to show a certain div only if the post belongs to a certain category, try the code bellow

<?php
if(in_category('category_slug')){
?>
your div and content here..
<?php } ?>