Last active
June 23, 2021 15:46
-
-
Save caseymilne/3fc9b5ba85d3a53909b6d838f9ddbfda to your computer and use it in GitHub Desktop.
Enqueue Theme Script with React Dependendy
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
| <?php | |
| // Enqueue Theme JS w React Dependency | |
| add_action( 'wp_enqueue_scripts', 'reflex_js' ); | |
| function reflex_js() { | |
| wp_enqueue_script( | |
| 'reflex-main-script', | |
| get_stylesheet_directory_uri() . '/build/index.js', | |
| ['wp-element'], | |
| time(), | |
| true | |
| ); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment