Skip to content

Instantly share code, notes, and snippets.

@Yeadh
Last active December 25, 2016 10:57
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 Yeadh/d4be83b894ac89c2fc46ef3be764a0ca to your computer and use it in GitHub Desktop.
Save Yeadh/d4be83b894ac89c2fc46ef3be764a0ca to your computer and use it in GitHub Desktop.
Displaying Post by it's category
<?php
$firstcategory = new WP_Query(array(
'type'=> 'post',
'posts_per_page'=> 3,
'category_name'=> 'football',
)
);
while ($firstcategory ->have_posts()) : $firstcategory -> the_post(); ?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment