2

我想知道是否可以调用不同的标题,例如 get_sidebar('newsidebar')?我可以打电话给 get_header('custom') 吗?我想让索引的标题与所有其他页面不同

4

2 回答 2

5

多头

不同页面的不同标题。

<?php
if ( is_home() ) :
get_header('home');
elseif ( is_404() ) :
get_header('404');
else :
get_header();
endif;
?>

home 和 404 标头的文件名应分别为 header-home.php 和 header-404.php。

于 2012-12-10T09:46:02.910 回答
1

当然可以,查看代码:http: //codex.wordpress.org/Function_Reference/get_header

于 2012-12-10T09:41:41.523 回答