Skip to content

Instantly share code, notes, and snippets.

@baczoni
Created April 24, 2012 14:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save baczoni/2479987 to your computer and use it in GitHub Desktop.
Save baczoni/2479987 to your computer and use it in GitHub Desktop.
Wordpress: Page specific css and javascript
//Page specific css and/or javascript -- Add to header.php
if (is_page_template('page-archives.php')) { ?>
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/css/ archives.css" type="text/css" media="screen" />
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/ js/archives.js"></script>
<?php }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment