wordpress元数据的if / else语句

时间:2014-01-09 18:24:29

标签: php wordpress if-statement meta-boxes

我在某些页面上有此代码,以显示通过wordpress页面上的自定义元数据上传的图像。但是,我试图弄清楚如何将它包装在if / else语句中,这样如果用户没有上传图像,那么代码就不会显示。

这是我在页面模板上的代码:

<div id="image-slider" class="rs-full">
    <div class="container">
        <div class="row-fluid">
            <img src="<?php global $post; $image = get_post_meta( $post->ID, '_wpb_rs_full', true ); echo $image; ?>" alt="<?php echo get_the_title($ID); ?>">
                    </div> <!-- /.row-fluid -->
    </div><!-- /.container -->
</div><!-- /#image-slider -->

1 个答案:

答案 0 :(得分:0)

<?php
global $post; 
$image = get_post_meta( $post->ID, '_wpb_rs_full', true );

if($image){ ?>
    <img src="<?php echo $image; ?>" alt="<?php echo get_the_title($ID); ?>">
<?php } ?>

这应该是你正在寻找的条件。