【从头开始构建主题–标头未显示】我正在从头开始创建网站, 但自定义标题没有显示。
这是我的CSS代码:
/*
* Blog name and description
*/
#mainheader {
height: 100%;
padding-top: 100px;
padding-bottom: 100px;
}
.blog-header {
width: 100%;
height: 100%;
padding-top: 25px;
padding-bottom: 25px;
}
这是我的标头代码:
<
body>
<
header id="mainheader">
<
div class="blog-header">
<
div id="blog-img">
<
/div>
<
/div>
<
/header>
<
div class="container">
这是我的function.php代码:
// Support Featured Images
add_theme_support( 'post-thumbnails' );
//Add Custom header Settings
$args = array(
'width'=>
1920, 'height'=>
1080, 'default-image' =>
get_template_directory_uri() . '/images/headers/lofsw.png', 'uploads'=>
true, );
add_theme_support( 'custom-header', $args );
#1你需要在页面模板中调用函数get_header(), 并确保标题代码位于名为header.php的文件中。这是一个index.php文件的示例。
<
?php get_header();
?>
<
div class="container-wrap">
<
div class="container main-content">
<
div class="row">
<
/div>
<
/div>
<
/div>
<
?php get_footer();
?>
推荐阅读
- 根据帖子数在循环内调用变量
- 从WordPress中的functions.php调用jQuery
- Buddypress成员区域在我的实时服务器中为空白
- 上面内容的Bootstrap导航栏不粘
- #IT人的升职加薪tips# 升职向左,身体向右
- #私藏项目实操分享# 什么是 SAP enhancement package
- 使用 Resilience4j 框架实现重试机制
- 科普 | 为什么人一到冬天就心情不好()
- Windows 服务器登录出现 Bad request timesstamp报错