/*
Theme Name: Enfold Child
Description: A <a href='http://codex.wordpress.org/Child_Themes'>Child Theme</a> for the Enfold Wordpress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating will be much easier then.
Version: 1.0
Author: Kriesi
Author URI: http://www.kriesi.at
Template: enfold
*/



/*Add your own styles here:*/

add_filter('avia_post_slide_query', 'avia_post_slide_query_mod');
function avia_post_slide_query_mod($query) {
    // Stel de sorteervolgorde in op ASC (Oudste eerst)
    $query['order'] = 'ASC';
    
    // Optioneel, maar goed om erbij te hebben
    $query['orderby'] = 'date'; 
    
    return $query;
}