Skip to content

Instantly share code, notes, and snippets.

@djrmom
Last active April 19, 2018 16:22
Show Gist options
  • Save djrmom/e1c80a09b407f19473db8f35c85e1115 to your computer and use it in GitHub Desktop.
Save djrmom/e1c80a09b407f19473db8f35c85e1115 to your computer and use it in GitHub Desktop.
facetwp listings not ordered by featured
<?php
// check for job_listings archive and don't use the query unless it is using menu_order
add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
if ( isset( $query->query_vars['post_type'] ) && 'job_listing' == $query->query_vars['post_type']
&& ( ! isset( $query->query_vars['taxonomy'] ) || '' == $query->query_vars['taxonomy'] ) ) {
if ( isset( $query->query_vars['order_by']['menu_order'] ) ) {
return true;
} else {
return false;
}
}
return $is_main_query;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment