admin管理员组文章数量:1417070
I am struggling a lot this time working on including a JavaScript files in plugin folder.
I am trying to create a plugin by transferring widget files from themes directory. I copied the widget file, but that widget file was depending on a JavaScript file so I created a /js/ folder in plugin directory. where this files is hosted "jquery.repeatable.js"
I used this code, but it doesn't seems to include the js file -
function Zumper_widget_enqueue_script()
{
wp_enqueue_script( 'my_custom_script', plugin_dir_url( __FILE__ ) . 'js/jquery.repeatable.js' );
}
add_action('admin_enqueue_scripts', 'Zumper_widget_enqueue_script');
I searched this on forum-
But still this was not helpful.
I am re-summarizing my question. In my plugin directory there is a js file under this folder - /js/
I wish to include it what is the correct process, do I need to register something also?
Is there something wrong with this portion - 'admin_enqueue_scripts'
?
I am struggling a lot this time working on including a JavaScript files in plugin folder.
I am trying to create a plugin by transferring widget files from themes directory. I copied the widget file, but that widget file was depending on a JavaScript file so I created a /js/ folder in plugin directory. where this files is hosted "jquery.repeatable.js"
I used this code, but it doesn't seems to include the js file -
function Zumper_widget_enqueue_script()
{
wp_enqueue_script( 'my_custom_script', plugin_dir_url( __FILE__ ) . 'js/jquery.repeatable.js' );
}
add_action('admin_enqueue_scripts', 'Zumper_widget_enqueue_script');
I searched this on forum- https://stackoverflow/questions/31489615/call-a-js-file-from-a-plugin-directory
But still this was not helpful.
I am re-summarizing my question. In my plugin directory there is a js file under this folder - /js/
I wish to include it what is the correct process, do I need to register something also?
Is there something wrong with this portion - 'admin_enqueue_scripts'
?
- Possible duplicate of This doesnt work for Plugin get_template_directory_uri() – Milo Commented Feb 6, 2016 at 17:47
3 Answers
Reset to default 44Your code seems correct, but it will load the script only in admin area beacuse you are enqueuing the script in admin_enqueue_scripts
action.
To load the script in frontend, use wp_enqueue_scripts
action (which is not the same that wp_enqueue_script()
function):
function Zumper_widget_enqueue_script() {
wp_enqueue_script( 'my_custom_script', plugin_dir_url( __FILE__ ) . 'js/jquery.repeatable.js' );
}
add_action('wp_enqueue_scripts', 'Zumper_widget_enqueue_script');
Also, that script seems to depends on jQuery, so you should declare that dependencie or the script can be loaded before jQuery and it won't work. Also, I strongly recommend to declare the version of the scripot. This way, if you update the script to a new version, the browser will donwload it again and discard the copy it may have on cache.
For example, if the version of the script is 1.0:
function Zumper_widget_enqueue_script() {
wp_enqueue_script( 'my_custom_script', plugin_dir_url( __FILE__ ) . 'js/jquery.repeatable.js', array('jquery'), '1.0' );
}
add_action('wp_enqueue_scripts', 'Zumper_widget_enqueue_script');
If you want to load it in admin area:
function Zumper_widget_enqueue_script() {
wp_enqueue_script( 'my_custom_script', plugin_dir_url( __FILE__ ) . 'js/jquery.repeatable.js', array('jquery'), '1.0' );
}
add_action('admin_enqueue_scripts', 'Zumper_widget_enqueue_script');
I normally use plugins_url() method to achieve enqueue.
function Zumper_widget_enqueue_script()
{
wp_enqueue_script( 'my_custom_script', plugins_url('js/jquery.repeatable.js', __FILE__ ), '1.0.0', false );
}
add_action('admin_enqueue_scripts', 'Zumper_widget_enqueue_script');
UPDATED:
Use this code instead
function Zumper_widget_enqueue_script()
{
wp_enqueue_script( 'my_custom_script', plugin_dir_url( __FILE__ ) . 'js/jquery.repeatable.js', array('jquery'), '1.0.0', false );
}
add_action('admin_enqueue_scripts', 'Zumper_widget_enqueue_script');
3rd parameter is to declare dependency and 4th one is to define version.
Set 5rd parameter of wp_enqueue_script()
to true
. That's meaning, this file will be loaded in footer.
本文标签: How to enqueue JavaScripts in a plugin
版权声明:本文标题:How to enqueue JavaScripts in a plugin 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745260062a2650316.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论