这是我的functions.php
文件:
/**
* Hoverintent Plugin for the menu
* @since Theme 1.0
*/
function theme_hover_menu() {
wp_register_script(\'hoverintent_script\',
get_template_directory_uri() . \'/js/hoverintent.js\',
array(\'jquery\'),
\'r6\' );
wp_enqueue_script(\'hoverintent_script\');
}
add_action(\'wp_enqueue_scripts\', \'theme_hover_menu\');
这是第一步。。。下一个评论?解决方案?我会在找到答案后编辑这篇文章。
下面是我在<head>
:
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
$(".menu li").hoverIntent({ //lower or uppercase i?
over: makeTall,
timeout: 900,
out: makeShort,
interval: 600
});
});
</script>
。。。顺便说一下,我想把这个脚本移到
js
将文件夹放入自己的文件中,然后将其排入呈现页面的底部(或者我应该这样做?)谢谢你的建议。