Skip to content

Commit

Permalink
Updated the way that files are called, now using "<?php echo get_temp…
Browse files Browse the repository at this point in the history
…late_directory_uri(); ?>" if not there will be problems with the name of the Theme's folder.

Forcing you to use "pears" as folder name
  • Loading branch information
nicoandrade committed Feb 6, 2012
1 parent b074d9c commit ae41a0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions header.php
Expand Up @@ -8,7 +8,7 @@

<!-- hide css from IE6 but load for everyone else -->
<!--[if gte IE 7]><!-->
<link rel="stylesheet/less" media="screen, projection" href="/wp-content/themes/pears/css/screen.less" />
<link rel="stylesheet/less" media="screen, projection" href="<?php echo get_template_directory_uri(); ?>/css/screen.less" />
<!-- <![endif]-->

<link rel="shortcut icon" href="/favicon.png" />
Expand All @@ -18,7 +18,7 @@
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->

<script type="text/javascript" src="/wp-content/themes/pears/js/less.js"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/js/less.js"></script>
</head>

<body <?php body_class(); ?>>
Expand Down

0 comments on commit ae41a0a

Please sign in to comment.