mirror of
https://gh.wpcy.net/https://github.com/aspirepress/site-theme.git
synced 2026-07-15 11:26:29 +08:00
30 lines
771 B
PHP
30 lines
771 B
PHP
<?php get_header(); ?>
|
|
|
|
<div class="col-sm-9 blog-main">
|
|
|
|
<header class="archive-header page-header">
|
|
<h1 class="archive-title"><?php echo post_type_archive_title() ?></h1>
|
|
</header>
|
|
|
|
|
|
|
|
<?php if ( have_posts() ) : ?>
|
|
<?php while ( have_posts() ) : the_post() ?>
|
|
<?php get_template_part('content', get_post_type()) ?>
|
|
<?php endwhile; ?>
|
|
<?php endif; ?>
|
|
|
|
|
|
<nav>
|
|
<ul class="pager">
|
|
<li><?php next_posts_link('Older') ?></li>
|
|
<li><?php previous_posts_link('Newer') ?></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
<?php get_footer(); ?>
|
|
<!-- archive-talk.php -->
|