wordpress-zerro/single.php
2020-03-07 18:43:08 +08:00

13 lines
200 B
PHP

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