Skip to content

Instantly share code, notes, and snippets.

@loorlab
Forked from baczoni/gist:2479987
Last active May 27, 2016 14:09
Show Gist options
  • Save loorlab/c654e0a1b2446d3727660ada20cf1293 to your computer and use it in GitHub Desktop.
Save loorlab/c654e0a1b2446d3727660ada20cf1293 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
<?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