first commit

This commit is contained in:
2020-03-07 15:49:14 +08:00
commit 92d52ef8db
6 changed files with 166 additions and 0 deletions

15
single.php Normal file
View File

@@ -0,0 +1,15 @@
<?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();?>