srikat

Untitled

Oct 19th, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. /**
  2. * Template Redirect
  3. * Use template_singular-parallax.php for Posts and Pages.
  4. */
  5. add_filter( 'template_include', 'custom_singular_template', 99 );
  6. function custom_singular_template( $template ) {
  7.  
  8. if ( is_singular( array( 'post', 'page' ) ) && ! is_front_page() ) {
  9. $new_template = locate_template( array( 'template_singular-parallax.php' ) );
  10. if ( '' != $new_template ) {
  11. return $new_template ;
  12. }
  13. }
  14.  
  15. return $template;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment