Created
March 18, 2013 16:46
-
-
Save gicolek/5188684 to your computer and use it in GitHub Desktop.
Code organization
This file contains hidden or 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
// 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