Fixed it. After all it was really dumb error on my part.
The WP_Query()
does not filter out unpublished posts by default. The internal archive page query does filter these posts out.
I had to add 'post_status' => 'publish'
to the $query_args
array and everything is now working as expected.
The final query then looks like this:
$query_args = array(
'post_status' => 'publish'
'post_type' => 'post',
'posts_per_page' => get_option( 'posts_per_page' ), // 10 by default
'offset' => get_option( 'posts_per_page' ), // 10 by default
'cat' => 8 // the category ID
);
Related Posts:
- AJAX Breaking Offset Argument In WP Query
- WordPress WP_Query offset parameter not working with search parameter
- wp_query->max_num_pages always returns 0 on custom post type
- ajax category filter
- next_posts_link not working for loop called with ajax
- Load more AJAX on WP Query
- How to adjust found_posts so that it accounts for offset and pagination
- How to pass custom parameter to WP_Query for filtering in pre_get_posts
- WooCommerce: filter by parent product’s taxonomy and product variation’s meta data
- ‘posts_where’ filter not applying ‘WP_Query’ in `wp_ajax`
- Ajax Infinite Scroll In Custom WP_Query Loop Not Working
- Using AJAX to return search form results
- WP Query with offset breaks wp_pagenavi or any pagination
- Foreach-generated custom tax queries, each with an ajax “Load more” button
- Exclude first 5 posts of specific categories in the main loop
- Custom query, works, but I get a “Notice: Undefined offset: 0…”
- How to wp_query posts with ajax
- WP_Query orderby breaks when using AJAX?
- How to get user_id from wordpress database inside ajax function?
- Update Loop with Form
- WP_Query & AJAX
- Sticky Post default functionality with WP_Query is ignored when using AJAX
- Show selected images on top in Media Manager
- Create unique page without header.php for json feed
- Offset Page Loops and Pagination
- wp_query not searching with apostrophe
- WP Pagination on Posts Search Results Page resulting from AJAX WP Query
- How to use offset in WP_Query
- Using Ajax to load more posts | Help me change the wording on my button to notify the user
- Include custom field in Ajax search WordPress
- How can I fix: “Notice: Undefined offset: 0”?
- Ajax load more posts – WP_Query parameters not working
- WP_Query, pre_get_posts and offset
- Load More Posts Button – AJAX
- how to handle multiple ajax wordpress queries?
- Ajax WP_Query reutrns no results on author.php
- Current post in AJAX call is always zero
- Filter wordpress post categories with jquery/ajax and pagination?
- WP_Query with offset and ‘orderby’ => ‘rand’, offset not working
- How do I rewrite this loop as a new WP_Query style-loop?
- Ajax future single post query doesn’t work when NOT logged in
- how update data through ajax and jquery
- WP_Query arguments order
- Error with function in functions.php?
- Use Ajax To filter posts?
- Stomping WP_Query in author archive to facilitate pagination with custom queries
- Apply query arguments after the nth post
- Change AJAX filter from POST to GET for URL Parameters
- Loading two different AJAX requests on two different pages
- Getting the post terms ‘wp_get_post_terms’ per post when within the functions.php file
- Apply filters to main query instead of creating new one?
- The best way to store variable across different widgets
- How to use a dropdown to filter posts by custom field
- Does WP_Query ‘responds’ badly to empty arguments?
- Retrieve data from wordpress db via input and put those result in dropdown
- WP_query is not returning the expected result
- WordPress dynamic AJAX query
- ajax wp_query conditional tags not working
- I need to run a AJAX Fuction from within a WP_Query but only works on first item
- Change post query onclick
- Add AJAX “Load more” on custom query block
- How to filter a static post page with ajax and $wp_query
- wpquery via ajax
- Ajax (jquery) wp_query pagination returns -1
- JOIN filter doesn’t work in WP_Query in wp-ajax calls
- WordPress AJAX Request returns 400
- Using Ajax and WP_Query to load more posts on category page fails
- Prevent Duplicate Post Counted by Query
- setting offset to category number in archive page
- WordPress live search and filter
- Filter admin ajax data by url query
- Move some posts to end of sort order, even if there is a sort in the wp_Query already
- Finding post ID dynamically on click
- Ajax buttons not working properly in WooCommerce when using wc_get_template_part
- Load WP Query with Ajax
- remove_action – pre_get_posts – does not restore original query
- Order & Orderby clause not working with custom query
- Is instantiating WP_Query not possible within an admin Ajax call?
- WordPress conflict with multiple load more posts functions on click
- Using something else instead of using 9 wp_query
- Show All with Isotope
- Search Filter With Custom Taxonomy and Custom Fields : How do I handle it via plugin?
- how to avoid reloading/refresh the page when displaying the post of wp_list_categories
- modifying the loop multiple times with arguments passed through ajax to wp_query
- Fetching $_POST from Page Template into functions.php
- WP_Query for liked posts is showing all posts if none are liked
- Declare inline background image in functions.php
- How to get query results for the next page
- How to solve this script problem in theme directory?
- I wan to process the following js to process the AJAX Request on my function to calculate author Total Post views
- Why is $wp_query fetching nothing?
- Inline Ajax call after term is appended with a @ or # etc. displayed in div
- Fire query on ajax post url page
- Sorting Posts Based On Meta Value Using AJAX
- How return normal search result using wp_ajax action for wordpress
- Duplicate posts showing up in loop using infinite scroll
- Adding arguments to WooCommerce Product Loop using AJAX
- Refresh wp_query with no changes
- WordPress WP_User_Query ignores the `meta_query` when called from an Ajax function
- AJAX multiple search boxes not merging with array merge