Hi,
Like the title says, is there a way to reverse the order of a flexible grid gallery in Flashlight, so that it displays newest images first (top) and oldest last (bottom)?
Reverse order of Flexible Grid gallery?
2 posts from 2 voices-
Posted 1 year ago #
-
Hey,
open up flashlight/includes/helper-slideshow.php and replace:
$attachments = get_children(array('post_parent' => $attachment_holder['ID'], 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'ASC', 'orderby' => 'menu_order ID'));with:
$attachments = get_children(array('post_parent' => $attachment_holder['ID'], 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'order' => 'DESC', 'orderby' => 'menu_order ID'));This should reverse the order.
Posted 1 year ago #
Reply
You must log in to post.














