Skip to content

Instantly share code, notes, and snippets.

@darknailblue
Created September 23, 2015 20:26
Show Gist options
  • Select an option

  • Save darknailblue/a02fb63dff214461bd50 to your computer and use it in GitHub Desktop.

Select an option

Save darknailblue/a02fb63dff214461bd50 to your computer and use it in GitHub Desktop.
Enqueue GF in Head
/**
* ==============================================
* ENQUEUE_GF_HIGHER
* ==============================================
* Enqueues gravity forms scripts higher on the page
*
*
* @since 0.1.0
* @version 0.1.0
* @author chriscarvache
*/
function enqueue_gf_higher () {
gravity_form_enqueue_scripts(2);
}
add_action('wp_head', 'enqueue_gf_higher', 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment