File: /var/www/meysamkiani.com/root/wp-content/themes/author/content/archive-header.php
<?php
// Don't output on bbPress (Forum pages count as archives)
if ( function_exists( 'is_bbpress' ) ) {
if ( is_bbpress() ) {
return;
}
}
if ( is_home() ) {
echo '<h1 class="screen-reader-text">' . esc_html( get_bloginfo("name") ) . ' ' . _x('Posts', 'noun: Site Title\' Posts', 'author') . '</h1>';
}
if ( ! is_archive() ) {
return;
}
$icon_class = 'folder-open';
if ( is_tag() ) {
$icon_class = 'tag';
} elseif ( is_author() ) {
$icon_class = 'user';
} elseif ( is_date() ) {
$icon_class = 'calendar';
}
?>
<div class='archive-header'>
<i class="fas fa-<?php echo $icon_class; ?>" aria-hidden="true"></i>
<h1>
<?php the_archive_title(); ?>
</h1>
<?php the_archive_description(); ?>
</div>