Skip to content

Instantly share code, notes, and snippets.

@anneallen
Last active August 29, 2015 14:17
Show Gist options
  • Save anneallen/9fa29569fbccf4d43cea to your computer and use it in GitHub Desktop.
Save anneallen/9fa29569fbccf4d43cea to your computer and use it in GitHub Desktop.
Apply complex sort order to genesis loop
function child_before_loopargs(){
global $wp_query;
$args = array(
'orderby' => array( 'meta_value_num' => 'DESC', 'title' => 'ASC' ),
'meta_key' => '_cmb2_b_year');
query_posts(array_merge( $wp_query->query,$args ));
}
add_action('genesis_before_loop', 'child_before_loopargs');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment