In some cases you may want to hide Categories and Tags in single post pages, but keep them in posts listing. It will require a small code change. Here are all of the necessary steps:
- Login to your Admin Panel
- Navigate to Left Menu -> Appearance -> Editor
- Open yourtheme/content.php
- Find <?php if ( has_category() ) : ?>
and Replace it with:
<?php if ( has_category() && !is_single() ) : ?> - Find <?php if ( has_tag() ) : ?>
and Replace it with:
<?php if ( has_tag() && !is_single() ) : ?> - Save Changes