wp_enqueue_script & constants?

I’m enqueuing a script:

wp_enqueue_script('my-script', MY_SCRIPTS."/my-script.js"); 

How to get MY_SCRIPTS const working in this context?

Read More

I know this works:

$template_dir = get_bloginfo('template_directory');
wp_enqueue_script('my-script',"$template_dir/my-scripts/my-script.js");

But I don’t like this approach at all.

Related posts

Leave a Reply

1 comment

  1. The value you pass to wp_enqueue_script should be the URL of the script, not the local file path.

    wp_enqueue_script('my-script', get_template_directory_uri() . '/my-scripts/my-script.js');