Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created October 11, 2019 09:17
Show Gist options
  • Save Farmatique/64e7ff3eaee2134b346b576c2ca936eb to your computer and use it in GitHub Desktop.
Save Farmatique/64e7ff3eaee2134b346b576c2ca936eb to your computer and use it in GitHub Desktop.
Wordpress create query to get posts with specifica category name
<?php $query = new WP_Query( array( 'category_name' => 'blog' ) ); ?>
<?php while ($query->have_posts()) : $query->the_post(); ?>
<?php get_template_part('partials/content-category-blog'); ?>
<?php
endwhile;
wp_reset_query();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment