You may need to rename the word ‘Categories’ in your post templates (i.e. to ‘Recipes’ if you have a cooking website). Here is how it can be done:
- Login to your Admin Panel
- Navigate to Left Menu -> Appearance -> Theme Editor
- Open content.php
- On line 26 rename the word ‘Categories’ and save changes:
<?php if ( has_category() ) : ?>
<?php esc_html_e('Categories:', 'tishonator'); ?> <?php the_category( ' ' ) ?>
<?php endif; ?>
Here is an example
<?php if ( has_category() ) : ?>
<?php esc_html_e('Recipes:', 'tishonator'); ?> <?php the_category( ' ' ) ?>
<?php endif; ?>
What if I don’t want to display anything in that area and leave it blank?
Hi Mike,
in such you will have to DELETE these code blocks:
Thanks,
Tihomir
Tishonator Team