Advertisement
Guest User

Untitled

a guest
Jul 1st, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'wpse230535_custom_posts_by_custom_field' );
  2.  
  3. function wpse230535_custom_posts_by_custom_field( $query ) {
  4. if( !is_admin() && is_archive( 'your-custom-post-type' ) && $query->is_main_query() ) {
  5. $query->set( 'meta_query', array (
  6. array (
  7. 'key' => 'custom-field-name',
  8. 'value' => 'custom-field-value',
  9. 'compare' => '=',
  10. ),
  11. ));
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement