Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 20, 2012 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/2758095 to your computer and use it in GitHub Desktop.
Save billerickson/2758095 to your computer and use it in GitHub Desktop.
<?php
/**
* Sort post archives by menu order
*
* To be used in conjunction with CMS Page Order and https://gist.github.com/2758065
*
* @author Bill Erickson
* @link http://www.billerickson.net/customize-the-wordpress-query/
* @param object $query data
*
*/
function be_post_archive_query( $query ) {
if( $query->is_main_query() && ( $query->is_home() || $query->is_archive() ) ) {
$query->set( 'orderby', 'menu_order' );
$query->set( 'order', 'ASC' );
}
}
add_action( 'pre_get_posts', 'be_post_archive_query' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment