我想将特色图片设置为WordPress帖子的标题背景。它应该在页面的背景中,并且只能通过页面的标题和标题部分看到。
答案 0 :(得分:0)
在Single.php中,创建一个包裹标题的div,然后在该div上添加
<?php
$featured_img_url = get_the_post_thumbnail_url($post->ID, 'full');
?>
<div style="background-image:<?php echo $featured_img_url; ?>">
<h1>Your Title</h1>
</div>