Advertisement
mrwweb

enqueue gravity forms styles with wp_head hook

Dec 8th, 2011
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. add_action( 'wp_head', 'ac_email_gform_scripts', 0 );
  2. function ac_email_gform_scripts() {
  3.     if ( is_front_page() ) {
  4.         gravity_form_enqueue_scripts( 1, true );
  5.     }
  6. }
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement