Why are my wp_query args being ignored if post_type = CPT

I have a few different CPTs setup; ‘jobs’, ‘events’, ‘products’.
They are being displayed on various pages of the site, in sidebar or footer areas.

Using the following code, my CPT gets output, but all $args are ignored except ‘post_type’. Posts are output as if ‘posts_per_page’ => -1.

If I leave ‘post_type’ empty, then blog posts are loaded and all of the args work as expected.

I have the same problem no matter which CPT I use for ‘post_type’. Example of ‘jobs’ below:

<?php
$args = array(         
    'post_type' => 'jobs', 
    'posts_per_page' => 3,
    'post_status' => 'publish',
    'order' => 'DESC',
    'orderby' => 'menu_order'
);
$wp_query = new WP_Query($args);
while ( $wp_query->have_posts() ) : $wp_query->the_post();
?>
    
// POST CONTENT
    
<?php endwhile; wp_reset_query(); ?>

CTP’s are setup as follows:

add_action( 'init', 'm_jobs_init' );

function m_jobs_init() {
$labels = array(
    'name'               => __( 'Jobs' ),
    'singular_name'      => __( 'Job' ),
    'menu_name'          => __( 'Jobs' ),
    'name_admin_bar'     => __( 'Jobs' ),
    'add_new'            => __( 'Add Job' ),
    'add_new_item'       => __( 'Add New Job' ),
    'new_item'           => __( 'New Job' ),
    'edit_item'          => __( 'Edit Job' ),
    'view_item'          => __( 'View Job' ),
    'all_items'          => __( 'All Jobs' ),
    'search_items'       => __( 'Search Jobs' ),
    'parent_item_colon'  => __( 'Parent Job' ),
    'not_found'          => __( 'No Jobs Found' ),
    'not_found_in_trash' => __( 'No Jobs Found in Trash' ),
);

$args = array(
    'labels'             => $labels,
    'public'             => true,
    'publicly_queryable' => true,
    'show_ui'            => true,
    'show_in_menu'       => true,
    'show_in_nav_menus'  => true,
    'query_var'          => true,
    'rewrite'            => array( 'slug' => 'jobs' ),
    'capability_type'    => 'post',
    'has_archive'        => true,
    'hierarchical'       => true,
    'menu_position'      => null,
    'supports'           => array( 'title', 'editor', 'author', 'thumbnail', 'excerpt', 'page-attributes','post-formats' )
);

register_post_type( 'jobs', $args );
}

Additional notes as below:

I have one pre_get_posts filter that changes the output on the archive page. I tried removing that but nothing changed with this query.

I’ve also been through and checked any other wp_query loops are closing with wp_reset_postdata(); but to no avail.

I’ve also run var_dump($wp_query); which I can see doesn’t look right, but not sure where errors are coming from. A truncated version reads:

object(WP_Query)[8153]
  public 'query' => 
    array (size=5)
      'post_type' => string 'jobs' (length=4)
      'posts_per_page' => int 3
      'post_status' => string 'publish' (length=7)
      'order' => string 'DESC' (length=4)
      'paged' => int 1
  public 'query_vars' => 
    array (size=65)
      'post_type' => string 'jobs' (length=4)
      'posts_per_page' => int -1
      'post_status' => string 'publish' (length=7)
      'order' => string 'ASC' (length=3)
      'paged' => int 1

Where does this second block of data come from? This has 'posts_per_page' => int -1 and 'order' => string 'ASC' which looks like it might be the cause of the issue.

$299 Affordable Web Design WordPress

This article was republished from its original source.
Call Us: 1(800)730-2416

Pixeldust is a 20-year-old web development agency specializing in Drupal and WordPress and working with clients all over the country. With our best in class capabilities, we work with small businesses and fortune 500 companies alike. Give us a call at 1(800)730-2416 and let’s talk about your project.

FREE Drupal SEO Audit

Test your site below to see which issues need to be fixed. We will fix them and optimize your Drupal site 100% for Google and Bing. (Allow 30-60 seconds to gather data.)

Powered by

Why are my wp_query args being ignored if post_type = CPT

On-Site Drupal SEO Master Setup

We make sure your site is 100% optimized (and stays that way) for the best SEO results.

With Pixeldust On-site (or On-page) SEO we make changes to your site’s structure and performance to make it easier for search engines to see and understand your site’s content. Search engines use algorithms to rank sites by degrees of relevance. Our on-site optimization ensures your site is configured to provide information in a way that meets Google and Bing standards for optimal indexing.

This service includes:

  • Pathauto install and configuration for SEO-friendly URLs.
  • Meta Tags install and configuration with dynamic tokens for meta titles and descriptions for all content types.
  • Install and fix all issues on the SEO checklist module.
  • Install and configure XML sitemap module and submit sitemaps.
  • Install and configure Google Analytics Module.
  • Install and configure Yoast.
  • Install and configure the Advanced Aggregation module to improve performance by minifying and merging CSS and JS.
  • Install and configure Schema.org Metatag.
  • Configure robots.txt.
  • Google Search Console setup snd configuration.
  • Find & Fix H1 tags.
  • Find and fix duplicate/missing meta descriptions.
  • Find and fix duplicate title tags.
  • Improve title, meta tags, and site descriptions.
  • Optimize images for better search engine optimization. Automate where possible.
  • Find and fix the missing alt and title tag for all images. Automate where possible.
  • The project takes 1 week to complete.