Gallery Only Displaying One Thumbnail
Try this and verify that the attachments come back correctly when queried directly: // helper function to return first regex match function get_match( $regex, $content ) { preg_match($regex, $content, $matches); return $matches[1]; } // Extract the shortcode arguments from the $post $shortcode_args = shortcode_parse_atts(get_match(‘/\[gallery\s(.*)\]/isU’, $post->post_content)); // get the attachments specified in the “ids” shortcode argument … Read more