Skip to content

Instantly share code, notes, and snippets.

@isGabe
Created June 13, 2013 19:59
Show Gist options
  • Save isGabe/5776841 to your computer and use it in GitHub Desktop.
Save isGabe/5776841 to your computer and use it in GitHub Desktop.
WordPress: register Gravity Forms stylsheet, only enqueue on Contact page #snippet #WordPress
// Gravity Forms style sheet
wp_register_style( 'gravity-forms', get_stylesheet_directory_uri() . '/library/css/gravity-forms.css', array(), '' );
// only load on contact page
if(is_page('contact')){
wp_enqueue_style('gravity-forms');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment