首先,请使用wp_enqueue_script()
将JavaScript添加到WordPress页面。还要注意,jQuery默认在WordPress中加载;你没有必要这么做。
从同一页:
WordPress附带的jQuery库被设置为noConflict()模式(请参阅wp includes/js/jQuery/jQuery.js)。这是为了防止与WordPress可以链接的其他JavaScript库的兼容性问题。
在noConflict()模式下,jQuery的全局$快捷方式不可用[…]
但是,如果您确实喜欢短$而不是jQuery,则可以在代码周围使用以下包装器:
jQuery(document).ready(function($) {
// Inside of this function, $() will work as an alias for jQuery()
// and other libraries also using $ will not be accessible under this shortcut
});
[
src]
因此,请将代码更改为:
jQuery(document).ready(function($) {
$(\'.one_fourth_style_4\').stickySidebar();
});
它应该与WP的jQuery库一起工作。