如何在wordpress中的页面中显示标题?

时间:2016-01-07 08:45:53

标签: wordpress

我想显示特定主题的标题。我已经通过在下面的模板中编写此代码来完成:

<?php
 /*
  Template Name:CLIENT LIST
*/
get_header("header1");
?>  

这是对的吗?我将该文件命名为header1.php。我已经有了header.php。我想创建另一个头文件,所以我把它命名为header1.php。

1 个答案:

答案 0 :(得分:2)

documentation向您展示了正确的方法:

<?php get_header( $name ); ?>
  

<强> $名称
  (string)(可选)调用header-name.php。
  默认值:

因此,请将文件命名为header-something.php,并使用get_header( 'something' );

进行调用