/ single.php
single.php
1 <?php get_header(); 2 3 while (have_posts()) { 4 the_post(); ?> 5 <h2><?php the_title(); ?></h2> 6 <?php the_content(); ?> 7 <?php } 8 get_footer() ?>
1 <?php get_header(); 2 3 while (have_posts()) { 4 the_post(); ?> 5 <h2><?php the_title(); ?></h2> 6 <?php the_content(); ?> 7 <?php } 8 get_footer() ?>