Last active
April 19, 2018 16:22
-
-
Save djrmom/e1c80a09b407f19473db8f35c85e1115 to your computer and use it in GitHub Desktop.
facetwp listings not ordered by featured
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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