I think you may need to add global $post
after the loop starts based on a similar question found here.
<?php
while ($queryObject->have_posts()) {
$queryObject->the_post();
global $post;
?>
I wish I could explain more about why, but I didn’t have time to investigate further.
Related Posts:
- How to display liked posts of current user in wordpress?
- Query metas (and not : query posts by metas)
- Order by meta value pro first then meta value free in my search function
- Is there any way to get all custom posts and all custom terms with it’s meta in few queries?
- What is the best way to query posts based on live data?
- How can I create a meta_query with an array as meta_field?
- How can I query all users who registered today?
- Search custom post type by meta data
- Custom Queries: Joining On Meta Values From Two Custom Post Types
- WordPress creating excessive joins on meta_query with search
- Filter query posts by the count of metas for a meta key
- Save default value for empty or missing post meta
- Grouping related postmeta data via SQL query
- How can I apply a meta query for a single custom post type in the main query?
- How do I find if a page has a template?
- mySQL query. ORDER BY meta_key
- Remove posts from query for events whose start date has passed
- How to check current user in meta value array in WP_Query meta_query
- How to orderby multiple meta fields with another meta query
- Issue with using add_rewrite_rule() for post querying custom fields
- Query returning same results even though the ID changes
- Query posts according to specific post meta values
- get_users with array as meta_value
- Declaring a var, placing it in a query and using the output of the query?
- WordPress Mysql query and Duplicate
- WP_Query meta compare must include ALL array values
- Combining two meta_values within one row with query
- Excluding posts by meta, and also keeping posts without the meta
- How to “orderby” the first array in a meta_query that uses multiply keys?
- meta_query not working
- WordPress query: merge meta key (number) values and sort
- Query against multiple locations within single custom post type post
- Restrict WordPress search to a single ACF field
- Sort by postmeta on when searching
- Fastest and most efficient SQL query to check if UID exists
- Use $wpdb->get_results with filter based on array
- Query Posts that have or don’t have a meta_value and order by the same ASC
- meta query always fails even if data is correct
- Custom MySQL Query for Post and Post Meta
- list or get meta_key where meta_value is ‘something’
- WP_Query orderby meta key/value suddely stopped working
- Meta Query compare with LIKE pulls similar post types: 55 and 155, and 1,155
- How to display SQL query that ran in query?
- Query multiple meta key values?
- How to Optimize WP site for millions of posts
- order by numeric value for meta value
- Use REGEXP in WP_Query meta_query key
- How to get comments by post ID?
- Differences between wpdb->get_results() and wpdb->query()
- Is there a way of increasing the speed of this query?
- Get all image from single page using this query
- Get Terms by IDs with IDs order
- Reversing the order of posts AFTER the query is performed
- what are the numbers between curly brackets in search query
- simple sql query on wp_postmeta very slow
- Using WordPress public query variables
- How to Use Wildcards in $wpdb Queries Using $wpdb->get_results & $wpdb->prepare?
- When/why does ‘$query->get( ‘tax_query’ );’ return empty?
- Changing the meta_query of the main query based on custom query_vars and using pre_get_posts
- Meta Query with AND & OR?
- How to get link and title of next and previous post on single page
- Create pagination and order according to alphabet
- wpdb get posts by taxonomy SQL
- How to List Events by Year and Month Using Advanced Custom Fields?
- What is the most efficient way of querying posts based on visits and date for current day?
- Is there any difference between hooks posts_where with posts_join and posts_search performance wise?
- Custom WP_Query order by post_meta and (author) user_meta
- wordpress query – orderby child post date
- Query WooCommerce orders where meta data does not exist
- Meta compare with date (stored as string) not working
- Getting attachments by meta value
- How many WordPress SQL Queries per page?
- How to display Section for certain time
- Add multiple value to a query variable in WordPress
- Ordering posts having multiple post-meta date fields
- Custom query_var causes displaying posts archive on front page
- Slow wp_enqueue_media()
- Multipart/formatted MySQL query problem
- What is the most efficient way of implementing a favorite post system?
- Query Custom Meta Value with Increment
- Remove [gallery] shortcode altogether
- Compare two numeric custom fields
- wp_dropdown_categories with multiple select
- Advanced Custom Fields – Query Efficiency
- Why does get_the_time(‘F j’) return November 30 for all posts?
- How Can I save multiple records in same meta key?
- Query by one meta_key and sort by another (possibly NULL value)
- How to tune search argument in WP_Query to show only exactly the same results?
- Perform query with meta_value date
- Meta query interfering with orderby relevance
- Custom query filter not working on woocommerce category page
- WooCommerce conditional meta query
- How to delete a transient on post/page publish?
- WPDB Multiple site’s posts and get featured images
- Very slow query
- query multiple taxonomy and show post count
- Search Terms – Querying on either description__like OR name__like in the same Term Query?
- Finding all results from database within 500 miles of the given latitude and longitude [closed]
- How to update single value in multi dimensional Post Meta?
- What is an efficient way to query based on post_meta?