我需要从我的 WordPress php 创建一个 HTML 页眉和页脚文件。我需要为为我构建页面的第三方提供这些文件。基本布局是:
header.html 他们的内容 footer.html
如何动态创建 header.html 和 footer.html?
如果您认为您不会很快更改主题,只需保存其中一页的源代码,然后剪切并粘贴即可。
或者,您可以浏览到模板存储页眉的任何包含文件,然后将视图源保存为 header.html 和页脚。
用户 JQuery 将 inc 文件加载到 html 页面的正文中
<html>
<script src="path/to/jquery">...
...
<body>
loading include
</body>
<script>
$(document).ready(function($) {
$('body').load('path/to/include.php', function() {
/// do nothing
});
});
</script>
</html>
或者更好的是,我认为他们会给你一个页面,上面有你的页眉,他们的废话,你的页脚。如果那是真的
头...
<html>
...
<body>
<div id="their-crap">
页脚...
</div>
</body>
</html>
然后你想把这些数据放在哪里,做
<script>
$(document).ready(function($) {
$('selector-you-want').load('path/to/renderedpage#their-crap', function() {
/// do nothing
});
});
</script>