In WP_Query(), there is no category reference passed so this is the point which returns all category post.
Please try with passing category ID here:
$the_query = new WP_Query(array(
'cat'=4, //Your category ID
'posts_per_page' => -1,
'meta_key' => 'adult_price',
'orderby'=> 'meta_value_num',
'order' => 'ASC'
));
OR
$the_query = new WP_Query(array(
'category_name'=staff, //Your category name...
'posts_per_page' => -1,
'meta_key' => 'adult_price',
'orderby'=> 'meta_value_num',
'order' => 'ASC'
));
Hope this would help you better.
Thanks!
Related Posts:
- ACF to select posts not displaying on blog page
- How to display post list in a table layout (multiple queries in single loop)
- If custom field is empty, use one from a previous post
- ACF flexible content block not showing on live site (works locally)
- WordPress Request Post All Post ID in a Loop? [closed]
- How do I show the post title if an advanced custom field hasn’t been used?
- Do we still need to include a “if (have_posts())” in templates?
- WP_Query: Why is sticky post not first item in loop?
- Query *only* sticky posts
- Cannot access current post’s ID in custom plugin
- Can’t show comments count per post outside loop
- Show a list of recently viewed posts to a user
- How to use alternate post layout at key points in post loop?
- Alternate custom content in the loop
- Auto Refresh Post List after X seconds
- Double count view in archive.php
- Display posts with comments closed, with pagination?
- Different style for most recent article
- Differentiate between posts and pages in search results
- Related posts loop based on tags AND categories doesn’t work without at least one tag assigned
- Guest Author – How to display posts on /author/ archive page
- How To Get Posts With A Specific Word
- How to display posts on a static page? (like search loop)
- Why WP_Query(‘showposts=5’) shows only 1 post?
- WordPress Loop – Next 3 Posts
- problems with loading posts in a table-row
- Blog page pagination is not working after using the offset argument
- WP Query – Posts Per Page not working in combination with category__in
- More then one menu items are assigned with “current-menu-item” class
- Pulling in post category and children within category
- How to add tags (custom taxonomy) to post class css?
- Listing Specific Categories from Current Post with Depth
- How to exclude visited posts from loop
- “Right Way” to make custom Loop respect reading settings inside admin panel?
- get_the_category listing in hierarchial order
- Exclude current custom post on single post
- why does wordpress ignore the post args?
- add to end of post in the loop with plugin
- Loop doesn’t show title of second post and posts thereafter
- How to add add more properties to WP_Post object in search results loop
- Custom taxonomy archive page problem
- Loop don’t work within single.php page
- How to show all posts by author on buddypress profile with navigation
- Add custom text automatically on each post
- Getting blog pagination to work on page set as front page
- Make loop inside slider divisible [closed]
- How to add automatically bootstrap 4 order-lg-1 and order-lg-2 classes for columns in foreach loop based on the count?
- Display current post position in Elementor Posts widget
- Update post meta within save_post action
- Saving Post Data in Another Database
- Not all posts showing in query
- WP_Query custom field pass the post id
- Some doubts about how the loop work (trying debugging it)
- Get post category as a separate string and url
- Display 3 posts with different HTML markup using a loop
- Changing wp_link_pages() to “Next Page” and “Previous Page” buttons?
- I can’t find the relevant part of the loop in my theme file. How do I find the full content with “More…”
- How to repeat a loop after 4 posts [duplicate]
- How to separate each individual blog post?
- How to show full post on home page
- Error while excluding a post from another loop (using its ID)
- Is there a way to define the $post var outside the loop?
- Only the most recent post is showing on my category page (working on localhost, not live site)
- ACF date picker to trigger category change
- How to work with posts and sub posts?
- How to show post views shortcode data for each post on Posts List Page?
- Need to display a Jan 1st post as the site’s front page on Jan 1st, and Jan 2nd post as front page on Jan 2nd etc
- show loop id post , only first id can read
- Assign a day of the week to post, e.g: Assign Monday to post and have it only appear when the day is Monday
- How to show category image if no featured image is set?
- Get post id outside loop : Notice: Trying to get property of non-object
- Retrieve posts inside foundation tabs and tab-content split by 3 per row
- Can I Paginate Post after every 25 tag?
- Post being duplicated with foreach loop
- Alternative content between posts no repetition
- Start loop from specific post ID
- Display new posts categories in separated divs
- Custom post type – Loop out in random order but same 15 to appear first… still random
- WordPress infinite post cycle
- WordPress loop uses unmodified posts array, why?
- Add row after three columns
- Post Format problem
- Modify WordPress loop after it has been run
- Skip posts, but keep posts per page
- index.php is only displaying current month’s posts?
- Loop doesn’t display posts. It displays a link to the home page instead
- Grab next post title in archive page
- Getting posts from multiple users?
- Show post if in category
- Adding a category at even positions on main loop with modified pagination
- Displaying categories items among posts
- Styling first post using Advanced Custom Fields
- Related posts by searching post tags of single post as terms
- The loop: more posts than I want to fit on one page
- Index.php is ordering posts strangely
- Show all posts in category
- First post in loop displays twice
- What function does the loop of displaying posts?
- What template file is used by default for posts?
- How to make internal links creating plugin to respect ACF?