6
如何在Wordpress上正确包含jquery-ui效果
我一直试图在我的wordpress主题中包括jquery ui效果(更具体地说是摇动效果)。到目前为止,我只能包含jQuery脚本,但是我真的不知道将ui脚本放置在何处以及如何使其入队。 这是我的代码。它显然不起作用: <?php wp_enqueue_script("jquery"); ?> <?php wp_enqueue_script("jquery-ui-core"); ?> <?php wp_head(); ?> <link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); ?>" /> <script type="text/javascript"> var $j = jQuery.noConflict(); $j(document).ready(function() { $j("#manita-imagen").mouseover(function(){ //$j(this).animate({ opacity: "hide" }) // alert('asd'); $j(this).effect("shake", { times:3 }, 300); }); }); </script> 谢谢你的帮助!