在WordPress中,get_header()
和 get_footer()
是两个非常常用的模板函数,它们分别用于包含主题的页眉(header)和页脚(footer)部分。以下是如何在WordPress主题中使用这些函数的基本步骤:
-
创建页眉模板(header.php):
- 在你的WordPress主题目录中,创建一个名为
header.php
的文件。 - 在这个文件中,你可以添加HTML、CSS和PHP代码来定义你的网站页眉。这通常包括网站的标题、导航菜单、徽标等。
- 在你的WordPress主题目录中,创建一个名为
-
创建页脚模板(footer.php):
- 同样,在主题目录中创建一个名为
footer.php
的文件。 - 在这个文件中,你可以添加页脚内容,如版权信息、链接到隐私政策页面的链接、社交媒体图标等。
- 同样,在主题目录中创建一个名为
-
在主题的其他模板文件中使用
get_header()
和get_footer()
:- 在你的主题的其他模板文件中(如
index.php
,single.php
,page.php
等),在文件的最顶部使用get_header()
函数来包含页眉模板。 - 在文件的底部使用
get_footer()
函数来包含页脚模板。
- 在你的主题的其他模板文件中(如
以下是一个简单的示例,展示了如何在 index.php
文件中使用这些函数:
<?php
/**
* The main template file
*
* This is the most generic template file in a WordPress theme
* and one of the two required files for a theme (the other being style.css).
* It is used to display a page when nothing more specific matches a query.
* E.g., it puts together the home page when no home.php file exists.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package Your_Theme_Name
*/
get_header(); // 包含页眉模板
// 在这里添加你的页面内容
get_footer(); // 包含页脚模板
?>
在这个示例中,get_header()
和 get_footer()
函数分别位于模板文件的最顶部和最底部。当WordPress渲染这个页面时,它会自动调用 header.php
和 footer.php
文件中的内容,从而在你的页面上显示页眉和页脚。
确保你的主题目录中有 header.php
和 footer.php
文件,并且它们包含了正确的HTML结构,这样 get_header()
和 get_footer()
函数才能正常工作。