Created
November 9, 2013 16:49
-
-
Save alexadark/7387307 to your computer and use it in GitHub Desktop.
WP: loop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php get_header(); ?> | |
<?php if (have_posts() ) : while ( have_posts() ) : the_post(); ?> | |
<h3><?php the_title(); ?></h3> | |
<?php the_content( ); ?> | |
<hr> | |
<?php endwhile; else: ?> | |
<p>there's no posts or pages</p> | |
<?php endif; ?> | |
<?php get_footer(); ?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment