Skip to content

Instantly share code, notes, and snippets.

@fabianibanez
Last active May 22, 2019 00:19
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 fabianibanez/217541f17dad719bbde8ad39d2784ee0 to your computer and use it in GitHub Desktop.
Save fabianibanez/217541f17dad719bbde8ad39d2784ee0 to your computer and use it in GitHub Desktop.
Wordpress - Loop
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
Aquí va el contenido de cada post
<?php endwhile; else: ?>
Aquí va un mensaje en caso de que no haya posts para mostrar
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment