I using the built-in gallery in wordpress to store and sort images inside a custom post type. In the theme I was using:
$attachments = get_posts(
array('post_type' => 'attachment',
'post_parent' => $post->ID,
'orderby' => 'menu_order'
)
);
The above code returns the gallery images correctly, but in the wrong order. When I look at the content field for the post containing the gallery, it contains the gallery data:
So, my guess is that the built-in gallery doesn’t store the sorting in a separate field like menu_order
instead it stores a sorted list of attachment ids in the content field of the parent post.
So my question is what would be the best way to get the gallery images sorted correctly from the theme?
I tried something like:
$matches = array();
if(preg_match('/ids="(.*)"/', $post->post_content, $matches)) {
$ids = $matches[1];
$query = "SELECT * FROM $wpdb->posts ".
"WHERE post_type = 'attachment' &&
post_parent = $post->ID ".
"ORDER BY FIELD(ID, $ids)";
$attachments = $wpdb->get_results($query);
}
This seems to work but is there a cleaner way of doing this.
You are correct.
The menu_order is no longer used for media in the gallery. Not sure if this is by design or an oversight. Could be by design since you can now include media in a gallery even if it is not “attached” to the page/post. In any case, below is the method I use to grab the ids and get the attachments based on the order specified in the shortcode:
Hope that helps!