Guest User

Untitled

a guest
Mar 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function tall_homes_override( $template ) {
  2. global $wp_query;
  3. $post_type = get_query_var( 'post_type' );
  4.  
  5. if ( $wp_query->is_single && $post_type == 'tall_homes' ) {
  6. return locate_template( 'single.php' );
  7. }
  8. return $template
  9. }
  10. add_filter( 'template_include', 'tall_homes_override' );
Add Comment
Please, Sign In to add comment