try to use a new WP_Query, when you use get_posts you’re using the main WP_Query this has hooks that other plugins can use to alter the query.
something else i saw is that you’re using include key which is not valid
$my_query = new WP_Query( array(
'post__in' => array( 1633, 1634, 1635 ),
'post_status' => 'any',
'post_type' => 'attachment',
'post_mime_type' => 'image',
'order' => 'ASC',
'orderby' => 'post__in'
) );
Related Posts:
- When should you use WP_Query vs query_posts() vs get_posts()?
- When to use WP_query(), query_posts() and pre_get_posts
- How to use the_posts_navigation for wp_query and get_posts?
- meta_query: using BETWEEN with floats and/or casting to DECIMAL
- How to order by post_status?
- Using get_posts vs. WP_Query
- Get Recent Posts by Date in Multisite
- get_template_part in for loop
- Is it possible to select against a post’s parent’s fields with WP_Query?
- Query all posts where meta value is empty
- Get posts by meta data OR title
- Get_post() with meta_key when compare is a date
- get_posts not finding argument: post_name
- Function to check if author has posted within the last x days
- Use post__in and post__not_in together?
- How to order posts by custom WP role?
- WP Query post meta value
- Get all posts without tags
- get_posts() seemingly ignoring post_type
- Can not switch the queried post in pre_get_posts hook
- How to find out what “Blog pages show at most” is set to [duplicate]
- Count posts returned by get_posts in external PHP script
- How to hide post content/meta from everyone except the post author and admin
- Trying to check and see if a post has a featured image outside of the main loop
- SELECT * FROM $wpdb->posts WHERE ID > 160
- Adding multiple post queries with parent and children to page – Best Way
- Get posts for last working week in WP_Query
- Create a sitemap without a plugin – get parent pages only?
- Creating a custom search for a specific post type
- Storing query variable and then using wp_reset_query
- get_posts – find out if querystring was crap and fallback is used
- How to order posts in wp_query by the user role (2 roles in array)
- While creating Block Themes in WordPress, how can I query custom posts for an Archive view?
- Get posts for which a custom field is not present, with get_posts
- Creating query to show which editor (classic or block) was last used to edit a post/page
- Return Taxonomy/Term Information with Posts (WP_Query/get_posts)
- WP_Query() and get_posts() can’t handle over a thousand posts?
- add active class based on permalink and url
- Weird orderby => post__in issue
- Conflict with get_posts and the_content
- get_post_meta slowing down my page load (in a plugin)
- How to show more post at a given category?
- Get posts by list of post IDs ordered by those IDs?
- Check return value of get_posts
- Reset WordPress Post Query to default
- Best choice for multiple loop in page?
- Get all posts which was posted on X Days WordPress
- Query post with meta value in set of values
- meta_query: check if number exists
- Use WP_Query or query_posts() or get_posts() for optimizing a site?
- get_posts always returning the same number of posts = 5
- “paged” in WP_Query returns 0 posts
- Specify strict ‘order by’ in WordPress query
- How I can change the condition or compare operator for WP_Query in pre_get_posts
- Check if searched number is within the post meta value
- Show menus to one admin username
- get_posts custom field
- How to apply a function to a metadata value before launch a WP Query?
- Posts query according to meta box date
- Woocommerce: order posts by meta key
- WP_User_Query and user posts
- Need help understanding this WP Query [closed]
- Link Author URL’s based on a custom field
- How to access $wp_query object from array of posts given by get_posts?
- get_posts query matches too many results
- Why always one post missing
- Magazine style frontpage with multiple categories/loops and no duplicate posts
- How to add date_query to meta_query array
- Why my query is not “Main_query”?
- WP_Query Orderby meta_key and hide some meta_key
- Facing problem with tax_query results
- How to add a “base” filter for all posts visible to visitors on the site?
- get_posts query is taking about 40 seconds to execute
- Related posts queries
- Meta query orderby meta_value_num sorting by role first
- WP_Query: Query posts only if their access is restricted to logged user’s role
- get_posts query caching?
- Get posts with any value in attribute
- Slow query when selecting with large meta query or post__in
- Getting the last X posts, but in ascending order of time
- how to avoid reloading/refresh the page when displaying the post of wp_list_categories
- Display posts from catagories
- Both WP_Query and get_posts returning 1 post
- When should you use WP_Query vs query_posts() vs get_posts()?
- Retrieve posts in custom post type and specific taxonomies
- Displaying content to search engines but via navigation only for registered users.
- Multiple homepage layouts as selected by user from theme options
- wp query problem
- Get users query makes the site loading time too big?
- Weird query with get_posts and WP_Query
- orderby and order filter in get_posts or WP_query function in wordpress not working
- tax_query not working properly with get_posts
- Query custom post types by meta field in a term from custom taxonomy
- How to know which editor published a post programmatically?
- How to replecate the _fields parameter in custom REST api endpoint
- How to retrieve _embed (etc) fields in get_posts custom query?
- WordPress extremely slow when using get_posts with multiple meta_query relations
- Empty query on Custom Post Type, using WP_Query or get_posts
- A Depth Like Parameter For “get_posts”
- Sort by multiple columns using get_posts