Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gbissland/c90ee1a2ed23d8c3ece15c7b996893d5 to your computer and use it in GitHub Desktop.
Save gbissland/c90ee1a2ed23d8c3ece15c7b996893d5 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