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

21 lines
313 B
PHP

<?php
/**
* The Template for displaying all single posts.
*
* @package p2020
*/
get_header(); ?>
<?php get_sidebar(); ?>
<main id="content">
<?php
while ( have_posts() ) :
the_post();
?>
<?php get_template_part( 'content', 'single' ); ?>
<?php endwhile; ?>
</main>
<?php get_footer(); ?>