20 lines
296 B
PHP
20 lines
296 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<?php wp_head(); ?>
|
||
|
</head>
|
||
|
<body>
|
||
|
<?php
|
||
|
if ( have_posts() ) {
|
||
|
while ( have_posts() ) {
|
||
|
the_post();
|
||
|
the_title( '<h1>', '</h1>' );
|
||
|
the_content();
|
||
|
}
|
||
|
}
|
||
|
wp_footer();
|
||
|
?>
|
||
|
</body>
|
||
|
</html>
|