Plugin calling js file with wrong path
-
I have a problem with one of my plugins, and I would need your help:
In the plugin, I call the files in wp_head this way:
wp_enqueue_script('jquery'); wp_enqueue_script( 'jqueryui', $this->dir.'/js/jquery-ui.js', array('jquery') ); wp_enqueue_script( 'categoryAccordion.ready', $this->dir.'/js/ready.js', array('jqueryui') );
However, When loading up blog, the source code shows me that these dir. variable does not work as I would like:
<script type='text/javascript' src='https://testsite.dev/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script> <script type='text/javascript' src='https://testsite.dev/C:AppServwwwblogwp-contentpluginscategory-accordion/js/jquery-ui.js?ver=2.9.1'></script> <script type='text/javascript' src='https://testsite.dev/C:AppServwwwblogwp-contentpluginscategory-accordion/js/ready.js?ver=2.9.1'></script>
Any idea about what’s happening to me?
Thanks for your help!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Plugin calling js file with wrong path’ is closed to new replies.