How can I show the recent media at the beginning of my gallery?

admin

1. Open radykal-fancy-gallery.php

2. Go to line 517:

$album_files = $this->wpdb->get_results("SELECT * FROM {$this->images_table_name} WHERE album_id='$album->ID' ORDER BY sort ASC"

3. Change ASC to DESC:

$album_files = $this->wpdb->get_results("SELECT * FROM {$this->images_table_name} WHERE album_id='$album->ID' ORDER BY sort DESC"

 

Back to FAQs