View Single Post
Old 01-08-2018, 02:05 AM   #4
aesthetiqclinic
Registered User
 
Join Date: Jan 2018
Posts: 230
A loop used to display list of post on pages.It is a php code to display the posts.
<?php
if ( have_posts() )
{
while ( have_posts() )
{
the_post();
//
// Post here
//
} // end while
} // end if
?>
aesthetiqclinic is offline   Reply With Quote