Guest User

Untitled

a guest
Jun 13th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. function get_header( $name = null ) {
  4. do_action( 'get_header' );
  5.  
  6. $templates = array();
  7. if ( isset($name) )
  8. $templates[] = "header-{$name}.php";
  9.  
  10. $templates[] = "header.php";
  11.  
  12. if ('' == locate_template($templates, true))
  13. load_template( get_theme_root() . 'header.php');
  14. }
  15.  
  16. get_header();
  17. ?>
Add Comment
Please, Sign In to add comment