Created
September 23, 2015 20:26
-
-
Save darknailblue/a02fb63dff214461bd50 to your computer and use it in GitHub Desktop.
Enqueue GF in Head
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * ============================================== | |
| * 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