Skip to content

Instantly share code, notes, and snippets.

@prasadnevase
Created August 5, 2015 06:42
Show Gist options
  • Save prasadnevase/5feb667279e6ee5d60cb to your computer and use it in GitHub Desktop.
Save prasadnevase/5feb667279e6ee5d60cb to your computer and use it in GitHub Desktop.
<?php
$term = get_query_var( 'category_name' );
echo "<h2>" . $term . "</h2>";
query_posts(array( 'post_type'=>'post', 'category' => $term, 'posts_per_page' => -1 ));
if ( have_posts() ) : while ( have_posts() ) : the_post();
echo "<h2>" . the_title() . "</h2>";
echo "<section>". the_content(). "</section>";
print apply_filters( 'taxonomy-images-list-the-terms', '' );
endwhile; else:
echo "<h3> Sorry, no matched your criteria</h3>";
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment