Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. add_filter('template_include', 'my_function_name', PHP_INT_MAX, 2 );
  2. function my_function_name( $template ) {
  3. if(is_page('about')){
  4. $template = dirname( __FILE__ ) . '/templates/about.php';
  5. }
  6. return $template;
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement