wenpai.org/wp-content/themes/wenpai-p2024/archive.php
2024-06-21 23:57:39 +08:00

23 lines
383 B
PHP

<?php
/**
* The template for displaying Archive pages.
*
* Learn more: http://codex.wordpress.org/Template_Hierarchy
*
* @package p2020
*/
get_header(); ?>
<?php get_sidebar(); ?>
<main id="content">
<?php
while ( have_posts() ) :
the_post();
?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
</main>
<?php get_footer(); ?>