Skip to content

Instantly share code, notes, and snippets.

@caseymilne
Last active June 23, 2021 15:46
Show Gist options
  • Select an option

  • Save caseymilne/3fc9b5ba85d3a53909b6d838f9ddbfda to your computer and use it in GitHub Desktop.

Select an option

Save caseymilne/3fc9b5ba85d3a53909b6d838f9ddbfda to your computer and use it in GitHub Desktop.
Enqueue Theme Script with React Dependendy
<?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