对WordPress主题使用多个自定义标题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对WordPress主题使用多个自定义标题相关的知识,希望对你有一定的参考价值。

The first thing to do is to create header files. Create as many different headers as you want. In this exemple, I have created 3 custom headers from my theme default file header.php, names headercontact.php, headergallery.php and headerdefault.php.

By using the php include() function and WordPress conditional tags, we can define custom headers easily.
Replace the content of your header.php file with the following code:
  1. <?php
  2. if (is_page('contact')){
  3. <?php include(TEMPLATEPATH.'/headercontact.php'); ?>
  4. }
  5. elseif (is_page('gallery')){
  6. <?php include(TEMPLATEPATH.'/headergallery.php'); ?>
  7. }
  8. else {
  9. <?php include(TEMPLATEPATH.'/headerdefault.php'); ?>
  10. }
  11. ?>

以上是关于对WordPress主题使用多个自定义标题的主要内容,如果未能解决你的问题,请参考以下文章

为WordPress的论文主题添加多个压缩页面,并使用论文1.8的自定义过滤器

如何在WORDPRESS首页插入一段自定义代码?

在 wordpress 自定义主题索引上显示页面链接

WordPress 自定义主题中的 Bootstrap 3 响应式表格代码替换

小部件标题未显示在我的自定义 WordPress 主题中

为自定义 Wordpress 主题创建下拉菜单