Advertisement
Guest User

Untitled

a guest
Feb 14th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. add_filter( 'front_page_template', function ( $template )
  2. {
  3. $locate_template = locate_template( 'page-templates/front-page.php' );
  4.  
  5. if ( !$locate_template )
  6. return $template;
  7.  
  8. return $locate_template;
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement