Skip to content

Instantly share code, notes, and snippets.

@feliciaceballos
Created April 10, 2019 05:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save feliciaceballos/040f4b6f5a90d4b1f2d565df8cf5f166 to your computer and use it in GitHub Desktop.
Save feliciaceballos/040f4b6f5a90d4b1f2d565df8cf5f166 to your computer and use it in GitHub Desktop.
Basic WordPress Loop
<?php
get_header();
if (have_posts()) :
while (have_posts()) :
the_post(); ?>
<h1><?php the_title() ;?></h1>
<?php
the_post_thumbnail( 'featured-large' );
the_content();
endwhile;
endif;
get_sidebar();
get_footer();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment