3 回答
TA贡献1772条经验 获得超8个赞
你的CSS:
entry-header {
font-size: 18px;
font-size: 1.8rem;
background: #3c3f47;
}
entry-title {
font-size: 1.8rem;
color: #FFF;
margin: 0;
padding: 1.2rem 0;
display: inline;
}
<span class="entry-header">header</span>
<span class="entry-title">date here</span>
<--Date in your header-->
<header class="entry-header container">
<span class="entry-title">date here </span>
<span class="entry-title"><?php the_title('<h1>', '</h1>'); ?></span>
</header><!-- .entry-header -->
例如,请参见此处:https ://www.w3schools.com/css/tryit.asp?filename=trycss_inline-block_span1
TA贡献1788条经验 获得超4个赞
只需在 the_title() 函数旁边添加 echo 并让 h1 标签显示内联块,这样它就不会占用标题的整个宽度。(在日期周围添加了语义标签,但不是必需的)。
PHP:
<header class="entry-header container">
<?php the_title('<h1 class="entry-title" id="page-entry-title">', '</h1>'); echo '<span class="entry-date">' . date('y-m-d') . '</span>'; ?>
</header><!-- .entry-header -->
CSS:
.entry-header {
font-size: 18px;
font-size: 1.8rem;
background: #3c3f47;
display: block;
}
.entry-title {
font-size: 1.8rem;
color: #FFF;
margin: 0;
padding: 1.2rem 0;
display: inline-block;
}
TA贡献1876条经验 获得超6个赞
包裹在 span 中,或者如果你想使用 h1 标签将 display 设置为 inline-block
<header class="entry-header container">
<span>Senate Portal</span>
<span>July 6 ,1966</span>
</header><!-- .entry-header -->
- 3 回答
- 0 关注
- 130 浏览
添加回答
举报