Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function alx_custom_post_archive( $query ) {
  2. if ($query->is_archive)
  3. $query->set( 'post_type', array( 'code', 'themes', 'nav_menu_item', 'post') );
  4. remove_action( 'pre_get_posts', 'alx_custom_post_archive' );
  5. }
  6. add_action( 'pre_get_posts', 'alx_custom_post_archive' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement