| Server IP : 121.121.20.254 / Your IP : 216.73.216.165 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/chronus/ |
Upload File : |
<?php /** * The template for displaying the blog index (latest posts) * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package Chronus */ get_header(); ?> <section id="primary" class="content-archive content-area"> <main id="main" class="site-main" role="main"> <?php // Display Magazine Homepage Widgets. chronus_magazine_widgets(); do_action( 'chronus_before_blog' ); if ( have_posts() ) : chronus_blog_title(); echo '<div class="post-wrapper">'; while ( have_posts() ) : the_post(); get_template_part( 'template-parts/content', esc_attr( chronus_get_option( 'blog_layout' ) ) ); endwhile; echo '</div>'; chronus_pagination(); else : get_template_part( 'template-parts/content', 'none' ); endif; ?> </main><!-- #main --> </section><!-- #primary --> <?php get_sidebar(); ?> <?php get_footer(); ?>