<?php
get_header();
if (have_posts()) {
while (have_posts()) {
the_post(); set_post_views(get_the_ID());
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h2><?php the_title(); ?></h2>
<div><?php the_content(); ?></div>
<?php wp_link_pages(); ?>
</div>
<?php }
}
?>
<span class="post-category">分类:<?php the_category(', '); ?></span>
<span class="post-author">作者:<?php the_author(); ?></span>
<span class="post-date">发表于:<?php the_time('Y-m-d H:i:s'); ?></span>
<span class="post-views">阅读量:<?php echo get_post_views(get_the_ID()); ?></span>
<style>
.align-left-right {
display: flex;
justify-content: space-between;
}
</style>
<div class="align-left-right">
<span><?php next_post_link('<< %link', '%title', true); ?></span>
<span> <?php previous_post_link('%link >>', '%title', true);?></span>
</div>
<hr>
<?php
get_footer();
?>
powered by kaifamiao