Header & Footer Code


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <head profile="http://gmpg.org/xfn/11">
  5. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  6.  
  7. <title><?php wp_title(''); ?></title>
  8.  
  9. <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
  10.  
  11. <link rel="stylesheet" href="<!--?php bloginfo('stylesheet_url'); ?-->" type="text/css" media="screen" />
  12. <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />
  13. <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" />
  14. <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" />
  15. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  16.  
  17. <?php wp_enqueue_script('jquery'); ?>
  18. <?php wp_head(); ?>
  19.  
  20. </head>
  21.  
  22. <body <?php body_class(); ?>>
  23.  
  24. <?php wp_footer(); ?>
  25. </body>
  26. </html>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.