Я вывожу кастомный title h1 в рубриках.
Использую вот такой вот код
<h1><?php $queried_object = get_queried_object(); $taxonomy = $queried_object->taxonomy;$term_id = $queried_object->term_id; if( get_field('rubtitleh', $taxonomy . '_' .$term_id) ): ?>
<?php $queried_object = get_queried_object(); $taxonomy = $queried_object->taxonomy;$term_id = $queried_object->term_id; the_field('rubtitleh', $taxonomy . '_' .$term_id); ?>
<?php else : ?>
<?php single_cat_title(); ?>
<?php endif; ?></h1>
В моём покупном шаблоне вывод сделан таким вот образом
if ( !empty( $args['title'] ) ) {
$args['title'] = '<h1 class="h6 herald-mod-h herald-color">'.$args['title'].'</h1>';
}