Advertisement
Guest User

header.php

a guest
Jan 25th, 2013
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  
  5. WARNING: This file is part of the core Genesis framework. DO NOT edit
  6.  
  7. this file under any circumstances. Please do all modifications
  8.  
  9. in the form of a child theme.
  10.  
  11. */
  12.  
  13.  
  14.  
  15. /**
  16.  
  17. * Handles the header structure.
  18.  
  19. *
  20.  
  21. * This file is a core Genesis file and should not be edited.
  22.  
  23. *
  24.  
  25. * @category Genesis
  26.  
  27. * @package Templates
  28.  
  29. * @author StudioPress
  30.  
  31. * @license http://www.opensource.org/licenses/gpl-license.php GPL v2.0 (or later)
  32.  
  33. * @link http://www.studiopress.com/themes/genesis
  34.  
  35. */
  36.  
  37.  
  38.  
  39. do_action( 'genesis_doctype' );
  40.  
  41. do_action( 'genesis_title' );
  42.  
  43. do_action( 'genesis_meta' );
  44.  
  45.  
  46. wp_head(); /** we need this for plugins **/
  47.  
  48.  
  49. ?>
  50.  
  51. </head>
  52.  
  53. <body <?php body_class(); ?>>
  54.  
  55. <?php
  56.  
  57. do_action( 'genesis_before' );
  58.  
  59. ?>
  60.  
  61.  
  62. <div id="wrap">
  63.  
  64.  
  65. <?php
  66.  
  67. do_action( 'genesis_before_header' );
  68.  
  69. do_action( 'genesis_header' );
  70.  
  71. do_action( 'genesis_after_header' );
  72.  
  73.  
  74.  
  75. echo '<div id="inner">';
  76.  
  77. if (function_exists('nivoslider4wp_show')) { nivoslider4wp_show(); };
  78.  
  79.  
  80. genesis_structural_wrap( 'inner' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement