Custom taxonomy page title
-
Can you add custom taxonomy support to page titles as below:
parts/page-title.php line 22:
<?php elseif ( is_category() || is_tag() ): ?>
to
<?php elseif ( is_category() || is_tag() || is_tax() ): ?>
functions/init-front.php line 493:
} else if ( is_tax() ) { $title = sprintf('%1$s: <span>%2$s </span>', get_taxonomy(get_queried_object()->taxonomy)->labels->singular_name, single_term_title('', false) ); }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Custom taxonomy page title’ is closed to new replies.