2020-03-07 18:43:08 +08:00
|
|
|
<?php
|
|
|
|
get_header();
|
2020-03-07 15:49:14 +08:00
|
|
|
|
|
|
|
if ( have_posts() ) {
|
|
|
|
the_post();
|
|
|
|
echo '<div class="content">';
|
2020-03-07 18:43:08 +08:00
|
|
|
echo "<h1>", the_title(); , "</h1>"
|
2020-03-07 15:49:14 +08:00
|
|
|
the_content();
|
|
|
|
echo '</div>';
|
|
|
|
}
|
|
|
|
|
2020-03-07 18:43:08 +08:00
|
|
|
get_footer();
|
|
|
|
?>
|