<h1 class="wood-craft-h1"><?php single_cat_title(); ?></h1> - не выводится
<h2 class="wood-craft-h2"><?php single_post_title(); ?></h2> - выводится
Неужели название категории можно вывести только в шаблоне категории?
Подскажите, что не так?
$categories = get_the_category();
if ( ! empty( $categories ) ) {
echo esc_html( $categories[0]->name );
}
if ( is_category() ) {
/**
* Filters the category archive page title.
*
* @since 2.0.10
*
* @param string $term_name Category name for archive being displayed.
*/
$term_name = apply_filters( 'single_cat_title', $term->name );