Created
December 8, 2015 16:32
-
-
Save anonymous/091811a11efdedc04d95 to your computer and use it in GitHub Desktop.
This file contains 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
<?php | |
public static function live_preview() { | |
wp_enqueue_script( | |
'ari-themecustomizer', // Give the script a unique ID | |
get_template_directory_uri() . '/theme-customizer.js', // Define the path to the JS file | |
array( 'jquery', 'customize-preview' ), // Define dependencies | |
'', // Define a version (optional) | |
true // Specify whether to put in footer (leave this true) | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment