当前位置:首页 > CMS教程 > WordPress > 列表

wordpress怎么实现不同页面引入不同header文件

发布:smiling 来源: PHP粉丝网  添加日期:2014-03-23 22:39:44 浏览: 评论:0 

下面我们来给各位朋友简单举个例子告诉你不同栏目或页面调用不同的头部文件,例子非常的简单有举的朋友可参考参考,wordpress主题一般会有header.php头部文件,但不同页面可能会有需要引入不同header文件的需要,实现代码如下:

  1. <?php 
  2. if ( is_home() ) : 
  3. get_header( 'home' ); 
  4. elseif ( is_404() ) : 
  5. get_header( '404' ); 
  6. else : 
  7. get_header(); 
  8. endif
  9. ?> 

上述代码实现:首页引入header-home.php,404页面引入header-404.php页面,若不存在上述要引入的页面,直接在主题文件夹内搜索引用头部通用文件header.php.

Tags: wordpress 不同页面 header文件

分享到: