Skip to content

Commit

Permalink
Using get_template_directory_uri() instead of bloginfo('template_url')
Browse files Browse the repository at this point in the history
  • Loading branch information
rachelbaker committed Nov 11, 2012
1 parent 69a0da9 commit d7b77c3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions header.php
Expand Up @@ -39,11 +39,11 @@
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />

<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="<?php bloginfo( 'template_url' );?>/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="<?php bloginfo( 'template_url' );?>/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="<?php bloginfo( 'template_url' );?>/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="<?php bloginfo( 'template_url' );?>/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="<?php bloginfo( 'template_url' );?>/ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="<?php get_template_directory_uri();?>/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="<?php get_template_directory_uri();?>/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="<?php get_template_directory_uri();?>/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="<?php get_template_directory_uri();?>/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="<?php get_template_directory_uri();?>/ico/apple-touch-icon-57-precomposed.png">

<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
Expand Down

0 comments on commit d7b77c3

Please sign in to comment.