Site Owners Forums - Webmaster Forums

Site Owners Forums - Webmaster Forums (http://siteownersforums.com/index.php)
-   Wordpress Themes (http://siteownersforums.com/forumdisplay.php?f=51)
-   -   What is WordPress loop? (http://siteownersforums.com/showthread.php?t=206536)

designpluzindia 12-19-2017 09:34 PM

What is WordPress loop?
 
What is WordPress loop?

friendhrm 12-19-2017 10:38 PM

The WordPress Loop is the code that WordPress uses to display content on your website. Take your index. php template, for example. In a basic blogging theme, this template is generally used to display several posts or post excerpts on your home page. The index.php template uses the WordPress Loop in order to do this.

michael Amaral 12-24-2017 11:23 PM

The WordPress Loop is the code that WordPress uses to display content on your website.
Below is an example of a simple WordPress Loop.
if ( have_posts() ) :
while ( have_posts() ) :
the_post();
//
// Post Content here
//
endwhile; // end while
endif; // end if
?>

aesthetiqclinic 01-08-2018 02:05 AM

A loop used to display list of post on pages.It is a php code to display the posts.
if ( have_posts() )
{
while ( have_posts() )
{
the_post();
//
// Post here
//
} // end while
} // end if
?>


All times are GMT -7. The time now is 03:01 AM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.