Profile image for Elie Andraos elieandraos
Basic Wordpress Loop
Language
PHP
Tags
Wordpress

Basic Wordpress Loop

1 <div class="content"> 2 <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?> 3 <h1><?php the_title(); ?></h1> 4 <?php the_content(); ?> 5 <?php endwhile; else: ?> 6 <p>Sorry, no posts found. 7 8 <?php endif; ?> 9 </div>

Comments