正如我们在html中所做的那样,包括标题&多个html页面中的页脚。我们可以通过usig jQuery在WordPress中做同样的事情。但在这种情况下我需要添加标题和放大器页脚直接来自html网站。我的代码
<script>
$(document).ready(function() {
$("#head").load("../header.html");
$("#foot").load("../footer.html");
});
</script>
使用此代码标题&amp;页脚正在显示,但图像未显示,导航菜单无效。
答案 0 :(得分:0)
在#head
div中,只需使用get_header();
在#foot
div中,只需使用get_footer();
这是你必须在WordPress中包含页眉和页脚的方式。