简体   繁体   中英

How do I get my custom UI component to work correctly with my custom Wordpress theme?

I'm making a couple of themes for Wordpress from scratch. Everything seems to work alright, but when i installed thethe tabs and accordions plugin, a plugin for making accordions with jQuery i realized that jQuery is not working with my templates! I searched a lot, but every method that i try to implement is not working:

<?php wp_enqueue_script("jquery"); ?> //Not working
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<?php wp_head(); ?> // Not working
<script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-1.4.2.min.js"></script> //Not working

I even try to make a function in the functions.php file, but i got the same results. When i look at the code with Chrome it looks like the site is loading jQuery, but for some reason my accordion plugin is not working. I'm not very familiar with jQuery and Javascript.

I'm working on a localhost and i tried with tewnty eleven and twenty ten themes and everything works well with them. For some reason my themes are not working properly.

Any help would be welcomed.

Updated on 04/01/2012

After trying everything! I decided to take another way. I used the Shape theme from Thematic, copy all my content over the original content and, voila! Everything it's working properly! I really don't understand why, but at least it worked. It's very strange because when i follow the tutorial from Thematic to make a theme like Shape the problem appears again... so, if somebody is getting problems to get jQuery plugins working properly on a WP Theme from scratch i recommend to use the Shape theme as a base theme for start working on. Hope it helps somebody!

It seems like your trying to include multiple versions of jquery, is that needed? Also I always put wp_head last. Lastly, and only because I do this all the time, are your files named correctly and in the right folders?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM