Could be because you are passing an array of array try this:
<?php
$my_query = new WP_Query();
$my_query->query(array( 'post__in' => $curauth->user_favourite_post));
while ($my_query->have_posts()) : $my_query->the_post();
?>
<h3><a href="https://wordpress.stackexchange.com/questions/27808/<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php endwhile; ?>
Related Posts:
- Getting all user metadata from user
- Searching user meta using WP_User_Query
- SQL query equivalent to WP User Query
- Query wp_usermeta alongside wp_users
- Minimize database queries to user tables?
- Meta_query on same meta key, with diffrenct values
- Pagination only won’t work in author template
- WP User Query with Custom Fields and Search Results
- Reduce number of SQL queries inside WP_Query loop to fetch author data
- Get user posts with custom WP_Query on author.php
- How to properly use AND / OR in custom search
- query post by author gender
- Counting instances of words in the results of a post query
- How to do WP_User_Query for Nested Array value Inside Nested Array field
- Unusual high query of user meta data
- using custom meta user data to run queries in WordPress
- Best way to query posts and order by relevancy to query
- WP_User_Query not searching numbers?
- WP_Query within save_post doesn’t include the item that triggered the action?
- Pagination for custom query throws 404 errors on last pages [duplicate]
- How ‘secure’ are loops?
- Get all user with both meta_value
- WP_Query with “post_title LIKE ‘something%'”?
- How to extend WP_Query to include custom table in query?
- compare meta_query in get_posts arguments
- How to use the_posts_navigation for wp_query and get_posts?
- How do I order pages and categories by ID or name in the same query?
- How to do a query only on a specific admin page?
- WP Cron and wp_insert_post
- How to adjust found_posts so that it accounts for offset and pagination
- Function to check if author has posted within the last x days
- Single page theme that uses pages for the content
- Show default content if custom WP_Query has no posts
- WP Query for Posts (Products) in Specific Category that has 2 Specific Tags (*AND* both tags not *OR*)
- Pagination for custom query on single.php
- wp_transients | wp_object_cache VS SESSIONS & Cookies?
- How to hide post content/meta from everyone except the post author and admin
- Get product list of given category
- Remove ellipsis from the excerpt retrieved using get_the_excerpt()
- WordPress query vars are not added
- When querying a combination of posts and other meta fields, is there a better solution than directly modifying the WHERE value?
- Alternative to query->set that appends conditions instead of overriding
- Group WP_Query by meta_key date
- Set if condition with wp_nav_menu
- How to reduce the number of queries?
- Multiple taxonomy And acf filter group by
- WP_Query Not Recognizing Taxonomy Parameter in Custom Search
- Sorting events by descending date, and ascending time if multiple events on a date
- WP_Query orderby author__in
- Take all produts by category
- Filtering out child category posts from parent category archive not working
- Custom Query include private posts in pagination count calculations?
- wp_update_post not working
- WP_Query with offset and ‘orderby’ => ‘rand’, offset not working
- WP_Query Limit Data_Query last 90 days
- How to retrieve the date on which a post was moved to trash?
- Sort WordPress Posts Meta value by Week not Day
- Best choice for multiple loop in page?
- wp_query get data from advanced custom field in wordpress
- How to create custom query by keyword in post title?
- Get Child Category only
- Order is breaking wp_query
- How to display all posts not in a post_format
- How to filter query loop block with a search string from the query parameters
- WP_Query – How to get all posts of specific days of week by custom field date?
- How can I comment comma-separated array values?
- WP_Query returns no posts for category
- Querying a large number of posts including their custom fields data
- Post__not_in only removing first 2 pages
- Query posts by searching for a string in a meta field
- Added Date Filter To Popular Posts Query
- WP_Query with 2 genres
- Display posts from an array of ID’s
- How can I build a query that returns all attachments of a page and it’s children pages?
- Query ACF relationship field – Comparator IN – Value array
- Use get_cat_ID to retreive multiple category IDs
- How can I modify the query by adding to the existing query?
- WP_Query Regexp whitespace and end of string
- WP_Query paginate with one term per page?
- Update wp_query every week
- Look for string in posts and postmeta
- Multiple meta_query not working
- Save query in function for custom gallery
- Merge two queries and remove duplicate
- Convert SQL Query to WP_Query
- WordPress wp_query add custom query as field
- Get a page ancestor from a most viewed list
- What argument does my function need to echo get_results() query results
- 3 wp_query on one page with pagination for last query
- Custom pagination (Title, date and teaser)
- Sorting Posts with meta value not working
- Display posts from catagories
- Fire query on ajax post url page
- What is wrong with this pagination code?
- Randomly display posts on a site hosted by WPEngine? [closed]
- tax_query not working properly with get_posts
- how to add limit records in wordpress query
- query only direct child and sub-terms of a current term archive
- Get access to all terms associated to each post that the wp_query loop displays
- WP_Query by meta key not returning any posts