我正在从头开始创建网站, 但自定义标题没有显示。
这是我的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(); ?>
评论前必须登录!
注册