Skip to content

Instantly share code, notes, and snippets.

@joedougherty
Created November 13, 2012 04:11
Show Gist options
  • Save joedougherty/4063888 to your computer and use it in GitHub Desktop.
Save joedougherty/4063888 to your computer and use it in GitHub Desktop.
Example template.php to add js just to front page
<?php
// Be sure to replace THEME_NAME with the name of the current theme
function THEME_NAME_preprocess_html(&$variables) {
if ( drupal_is_front_page() ) {
drupal_add_js( 'path/to/file' );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment