wordpress主题一般会有header.php头部文件,但不同页面可能会有需要引入不同header文件的需要,实现代码如下:
header
使用代码实现:首页引入header-home.php , 404页面引入header-404.php页面,若不存在下述要引入的页面,直接在主题文件夹内搜索引用头部通用文件header.php。
代码:
<?php if ( is_home() ) : get_header( 'home' ); elseif ( is_404() ) : get_header( '404' ); else : get_header(); endif; ?>
在线 客服
神逸在线客服服务时间:周一至周六 9:00-17:30
客服 热线
15000620749 客户服务热线
关注 微信
有问 必答