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='http://testsite.dev/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script>
<script type='text/javascript' src='http://testsite.dev/C:AppServwwwblogwp-contentpluginscategory-accordion/js/jquery-ui.js?ver=2.9.1'></script>
<script type='text/javascript' src='http://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!