wordpress-zerro/single.php
2020-03-07 15:49:14 +08:00

15 lines
222 B
PHP

<?php get_header();?>
<?php
if ( have_posts() ) {
the_post();
echo '<div class="content">';
the_title();
the_content();
echo '</div>';
} else {
echo "asd";
}
?>
<?php get_footer();?>