Wordpress和PHP包括

时间:2015-03-30 17:47:20

标签: php html wordpress php-include

如果我想在我的wordpress主题上使用我自己的HTML浏览某个页面,我该怎么办呢?

请告知代码应该去哪里

如果我可以使用原始HTML或PHP INCLUDES。

1 个答案:

答案 0 :(得分:0)

如果您希望将HTML放在主页内容中,只需使用WordPress的文本编辑器(http://www.wpbeginner.com/glossary/text-editor/)。标题&页脚将在主题的header.phpfooter.php文件中修改。它们所在的目录应为/wp-content/themes/salient/。如果您只想在特定页面上修改页眉和页脚,您将需要使用WordPress(https://codex.wordpress.org/Function_Reference/is_page)中内置的is_page()函数。

将页眉或页脚修改限制为特定页面的示例:

<?php if( is_page( 42 ) !== false ) { ?>
    <!-- HTML that should only appear on page with id of 42. -->
<?php } ?>