|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/nandedex/www/wp-content/plugins/better-amp/template/views/archive/ |
<?php
$title = better_amp_get_archive_title_fields();
$title_classes = array(
'archive-page-header'
);
if ( ! empty( $title['icon'] ) ) {
$title_classes[] = 'have-icon';
}
if ( ! empty( $title['pre_title'] ) ) {
$title_classes[] = 'pre_title';
}
?>
<header class="<?php echo implode( ' ', $title_classes ); ?>">
<?php
if ( ! empty( $title['pre_title'] ) ) {
echo '<p class="pre-title">', $title['pre_title'], '</p>';
}
echo '<h1 class="archive-title">', $title['icon'], $title['title'], '</h1>';
if ( ! empty( $title['description'] ) ) {
echo '<div class="archive-description">', $title['description'], '</div>';
}
?>
</header>