Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created August 16, 2016 14:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/e8c4624d25f6004d5db9e0c387cbb429 to your computer and use it in GitHub Desktop.
Save billerickson/e8c4624d25f6004d5db9e0c387cbb429 to your computer and use it in GitHub Desktop.
<?php
/**
* Enqueue WPForms styles in homepage <head>
* @author Bill Erickson
* @see http://www.billerickson.net/code/enqueue-wpforms-style-head/
*/
function ea_home_wpforms_styles() {
if( is_home() && function_exists( 'wpforms' ) ) {
wpforms()->frontend->assets_css();
}
}
add_action( 'wp_enqueue_scripts', 'ea_home_wpforms_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment