Advertisement
Guest User

Exclude Children Post

a guest
Nov 29th, 2017
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. $args = [
  2.         'post_type'      => 'post',
  3.         'post_status'    => 'publish',
  4.         'posts_per_page' => $post_number + 1,
  5.         'paged'          => ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1,
  6.         'tax_query'      => [
  7.             [
  8.                 'taxonomy'         => $taxonomy,
  9.                 'field'            => 'term_id',
  10.                 'terms'            => $category_id,
  11.                 'include_children' => false
  12.             ],
  13.         ],
  14.     ];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement