/*
 * Theme Name:  Swyft Child
 * Theme URI:   https://swyft.codesupply.co/
 * Description: Swyft Child Theme
 * Author:      Code Supply Co.
 * Author URI:  https://codesupply.co/
 * Template:    swyft
 * Version:     1.0.0
 */

/* Copy any classes from parent theme here. They will override the parent's version. */
function swyft_custom_order($query) {
    if (!is_admin() && $query->is_home() && $query->is_main_query()) {
        $query->set('orderby', 'menu_order');
        $query->set('order', 'ASC');
    }
}
add_action('pre_get_posts', 'swyft_custom_order');