wordpress-zerro/single.php

11 lines
163 B
PHP
Raw Normal View History

2020-03-07 18:43:08 +08:00
<?php
get_header();
2020-03-07 15:49:14 +08:00
if ( have_posts() ) {
the_post();
2020-03-13 18:23:34 +08:00
get_template_part( 'template/post/content', get_post_format() );
2020-03-07 15:49:14 +08:00
}
2020-03-07 18:43:08 +08:00
get_footer();
?>