Thread
:
What is WordPress loop?
View Single Post
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
View Public Profile
Find More Posts by aesthetiqclinic