Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Last active October 6, 2020 01:09
Show Gist options
  • Select an option

  • Save mgibbs189/65e041f57d0d5dfe6a94da3c569aa2fd to your computer and use it in GitHub Desktop.

Select an option

Save mgibbs189/65e041f57d0d5dfe6a94da3c569aa2fd to your computer and use it in GitHub Desktop.
FacetWP - sort by menu_order for certain post type
<?php
// Add to your (child) theme's functions.php
add_action( 'pre_get_posts', function( $query ) {
if ( 'providers' == $query->get( 'post_type' ) ) {
$query->set( 'orderby', [ 'menu_order' => 'ASC', 'date' => 'DESC' ] );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment