Skip to content

Instantly share code, notes, and snippets.

@joliveras
Last active August 29, 2015 14:02
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 joliveras/ffd260cf18e06a398fd0 to your computer and use it in GitHub Desktop.
Save joliveras/ffd260cf18e06a398fd0 to your computer and use it in GitHub Desktop.
Wordpress: Loop: Blog Basic
<?php while (have_posts()) : the_post(); ?>
<h1>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Enlace a: <?php the_title(); ?>">
<?php the_title(); ?>
</a>
</h1>
<p><?php the_time('F jS, Y') ?></p>
<p><?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
<?php the_excerpt(); ?>
<?php endwhile; ?>
<?php next_posts_link('« Previous Entries') ?>
<?php previous_posts_link('Next Entries »') ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment