Advertisement
paolo_bortolotti

incluse cpt

Jul 22nd, 2021
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'include_cpt' );
  2. function include_cpt( $query ) {
  3. global $wp_query;
  4. if ( is_page( array( 'ricerca-sport-e-corsi-mare', 'ricerca-sport-e-corsi-terra', 'ricerca-altri-sport' ) ) ) {
  5. if ( $query->is_tax() && $query->is_main_query() ) {
  6. $query->set( 'post_type', array('corsi'));
  7. }
  8. return $query;
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement