Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. add_filter('template_include', function( $template ) {
  2. $path = explode('/', $template);
  3. $template_choosen = end($path);
  4.  
  5. $template = 'src\\components\\pages\\' . $template_choosen;
  6.  
  7. array_pop($path);
  8. $path[] = $template;
  9. $path = implode('\\', $path);
  10. return $path;
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement