Skip to content

Instantly share code, notes, and snippets.

@anka
Created April 7, 2023 18:19
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Enqueue a JavaScript file in a custom Wordpress plugin
function custom_route_enqueue_scripts() {
wp_enqueue_script('custom-route-script', plugin_dir_url(__FILE__) . 'custom-route-script.js', array(), '1.0', true);
}
add_action('wp_enqueue_scripts', 'custom_route_enqueue_scripts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment