Wordpress - 在PHP的短代码中使用特色图像作为div背景

时间:2014-09-25 11:00:43

标签: php css wordpress shortcode

我正在尝试在wordpress中获取帖子的特色图像并将其输出为div的背景图像并将其对齐到div的右下角。

到目前为止,我的代码如下所示,但代码执行时background-image: url(' . wp_get_attachment_url() . ');将返回background-image: url();

提前感谢任何有帮助的人!

<?php
    query_posts(array( 'category_name' => 'what-we-do'));
    if(have_posts()) : while(have_posts()) : the_post();
?>
<div>
    <?php 
        echo do_shortcode( '
            [expand title="' . get_the_title() . '" swaptitle="Close" trigpos="below" id="' . get_the_ID() . '" trigclass="arrowright" rel="whatwedo-highlander"]
                <h4 class="collapse-inner-title">' . get_the_title() . '</h4>
                <div class="whatwedo-collapse-background-img" style="background-image: url(' . wp_get_attachment_url() . '); background-position: right bottom;">
                    <div class="whatwedo-collapse-content">' . get_the_content() . '</div>
                </div>
            [/expand]
        ' ); 
    ?>
</div>

<?php
    endwhile;
    endif;
    wp_reset_query();
?>

1 个答案:

答案 0 :(得分:2)

试试这个:

$image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'single-post-thumbnail' );

然后我们$image[0]设置background-image