nguyen dung 39b8cb3612 init
2022-02-18 16:43:41 +07:00

13 lines
360 B
PHP

<div class="page-title">
<div class="page-title-inner container flex-row">
<div class="flex-col flex-grow">
<h1 class="entry-title uppercase mb-0">
<?php
if(is_tax()){
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
echo $term->name;
} else { the_title(); } ?>
</h1>
</div>
</div>
</div>