Advertisement
Guest User

alamitos-head

a guest
Jan 9th, 2013
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.00 KB | None | 0 0
  1. <head>
  2.  
  3.         <!-- title -->
  4.         <title>
  5.         <?php if(is_home()) : ?>
  6.         <?php echo bloginfo('name'); ?> | <?php echo bloginfo('description'); ?>
  7.         <?php else : ?>
  8.         <?php wp_title(); ?>
  9.         <?php endif; ?>
  10.         </title>
  11.        
  12.         <!-- Force mobile layouts on small screens -->
  13.         <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
  14.    
  15.         <!-- stylesheet -->
  16.         <link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" type="text/css">
  17.        
  18.         <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory'); ?>/colors.css" media="screen" />
  19.        
  20.         <!-- RSS -->
  21.         <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
  22.        
  23.         <!-- Pingback -->
  24.         <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
  25.        
  26.         <!-- Charset -->
  27.         <meta charset="UTF-8" />
  28.        
  29.         <!-- jQuery -->    
  30.         <?php // wp_enqueue_script("jquery"); ?>
  31.    
  32.         <?php wp_head(); ?>
  33.     </head>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement