Basic Loop While For WP Single.php & Page.php

<?php

    get_header(); 

    while(have_posts()){
        the_post(); ?>
        <h2><?php the_title(); ?></h2>
        <?php the_content(); ?>
        <?php
    }

    get_footer(); 

?>
Scroll to Top