Skip to content

Instantly share code, notes, and snippets.

@gicolek
Created March 18, 2013 16:46
Show Gist options
  • Save gicolek/5188684 to your computer and use it in GitHub Desktop.
Save gicolek/5188684 to your computer and use it in GitHub Desktop.
Code organization
// sth above
<?php if ( $related_posts->have_posts() ): ?>
<h3> Related Posts</h3>
<ul>
<?php while ( $related_posts->have_posts() ): $related_posts->the_post(); ?>
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?> </a></li>
<?php endwhile; ?>
</ul>
<?php endif; ?>
// sth below
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment