Skip to content

Instantly share code, notes, and snippets.

@leocristofani
Last active December 15, 2015 21:49
Show Gist options
  • Save leocristofani/5328014 to your computer and use it in GitHub Desktop.
Save leocristofani/5328014 to your computer and use it in GitHub Desktop.
WordPress Theme's header.php
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo('charset'); ?>">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php wp_title('|', true, 'right'); ?><?php bloginfo('name'); ?></title>
<meta name="description" content="<?php bloginfo('description'); ?>">
<meta name="author" content="">
<!-- mobile specific meta -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- blogging specific meta -->
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<!-- style.css -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>">
<!-- favicon and iOS specific icons -->
<link rel="shortcut icon" href="<?php echo THEME_DIR; ?>/assets/img/site/favicon.ico">
<link rel="apple-touch-icon" href="<?php echo THEME_IMAGES_DIR; ?>/assets/img/site/apple-touch-icon.png">
<link rel="apple-touch-icon" href="<?php echo THEME_IMAGES_DIR; ?>/assets/img/site/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" href="<?php echo THEME_IMAGES_DIR; ?>/assets/img/site/apple-touch-icon-114x114.png">
<?php wp_head(); ?><!-- wp plugins depend on this tag -->
</head>
<body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment