change secondary order to title if post type is hierarchical

This commit is contained in:
Robin Cornett
2015-12-30 21:02:13 -05:00
parent d587393697
commit f2a4cb192f
@@ -249,7 +249,9 @@ class Display_Featured_Image_Genesis_Admin {
),
)
);
$query->set( 'orderby', 'meta_value_num date' );
$post_type = $query->get ( 'post_type' );
$secondary_order = is_post_type_hierarchical( $post_type ) ? 'title' : 'date';
$query->set( 'orderby', "meta_value_num $secondary_order" );
}
}
}