Creating a single.php file

Description

Create a Page called single.php. all pages will follow this layout

Create a Page called single.php. all pages will follow this layout

HTML Source Code

                        
                          <?php

if (have_posts()) :
    while (have_posts()) :
        the_post();
        ?>
<!--Wordpress Codex Start-->







<!--Wordpress Codex End-->		
        <?php

    endwhile;
endif;
?>                        
                        


Post Categories