Advertisement
mendes8010

Função exibir CPT em single

Feb 15th, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. add_action( 'pre_get_posts', 'exibir_cpt_prd_individual' );
  2.  
  3.     function exibir_cpt_prd_individual( $nova_query ) {
  4.     if ( is_single() && $nova_query->is_main_query() )
  5.         $nova_query->set( 'post_type', array( 'produto' ) );
  6.     return $nova_query;
  7.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement