| Server IP : 121.121.20.254 / Your IP : 216.73.216.146 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/KnowledgeBase/wp-content/themes/unblock/ |
Upload File : |
<?php
/**
* The archive template file
* Used to display blog archived pages like categories, tags, author posts, etc.
* @package unBlock
* @since 1.0.0
*/
if (!defined('ABSPATH')) {
exit; // Exit if accessed directly.
}
get_header(); ?>
<header id="page-header">
<?php
echo '<h1 class="entry-title">' . esc_html('Blog', 'unblock') . '</h1>';
the_archive_title('<h2 id="archive-title">', '</h2>');
the_archive_description('<div id="archive-description">', '</div>');
// action hook for any content after the archive title and description
if (!is_category() && !is_author()) {
do_action('unblock_after_archive_description');
}
?>
</header>
<?php
// Action hook for any content placed before posts
do_action('unblock_before_posts');
// Get our blog layout
unblock_blog_styles();
// Action hook for any content placed after posts
do_action('unblock_after_posts');
?>
<?php
get_footer();