Quantcast
Channel: Tishonator
Viewing all articles
Browse latest Browse all 293

Rename ‘Categories’ in Post Templates

$
0
0

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:

  1. Login to your Admin Panel
  2. Navigate to Left Menu -> Appearance -> Theme Editor
  3. Open content.php
  4. 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; ?>

Viewing all articles
Browse latest Browse all 293

Trending Articles