将精选图片设置为post background-image

时间:2016-02-22 02:12:58

标签: php html wordpress wordpress-theming

我已设置首页,以显示特定类别中的5个最新帖子。我已将帖子设置为视图宽度/高度的100%,我希望每个帖子的背景图像都是用户选择的特色图像或默认值。我似乎已正确设置默认值,但如果我在测试帖上设置了特色图像,则帖子背景为白色。

以下是我从index.php获得的代码:

<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> 
         style= "background-image: 
             <?php
                 if ( has_post_thumbnail() ) {
                     the_post_thumbnail('full');
                 } else {
                     ?>url(http://localhost:8080/wordpress/wp-content/uploads/2016/02/background.png)"
             <?php 
                 }
             ?> 
>

任何想法我做错了什么?

0 个答案:

没有答案