Advertisement
Tryah85

header.php with jQuery in WP.

Sep 13th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.70 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head profile="http://gmpg.org/xfn/1">
  4.     <title><?php bloginfo('name'); ?><?php wp_title(); ?></title>
  5.     <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" />
  6.     <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please -->
  7.     <style type="text/css" media="screen">
  8.         @import url( <?php bloginfo('stylesheet_url'); ?> );
  9.     </style>
  10. <link rel="shortcut icon" href="" type="image/vnd.microsoft.icon" />
  11. <link rel="icon" href="" type="image/gif" />
  12.     <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="" />
  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.     <?php wp_get_archives('type=monthly&format=link'); ?>
  17.     <?php //comments_popup_script(); // off by default ?>
  18.  
  19. <?php wp_enqueue_script("jquery"); ?>
  20.     <?php wp_head(); ?>
  21.  
  22. <?php wp_enqueue_script('jquery.tinyscrollbar.min.js', '/wp-content/themes/clear/js/jquery.tinyscrollbar.min.js', array('jquery')); ?>
  23.     <script src="<?php bloginfo('template_directory'); ?>/js/filterable.pack.js"></script>
  24.  
  25.  
  26.  
  27. </head>
  28.   <body>
  29. <div id="header">
  30.  
  31. </div>
  32. <div id="menu">
  33. <img src="http://toddhartsfield.com/blog/wp-content/uploads/2012/02/wp_logo.png" style="
  34.     padding-left: 283px;
  35. ">
  36. <?php if(function_exists('show_media_header')){ show_media_header(); } ?>
  37.  
  38. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement