反转此if语句,以便在上传视频和图像时显示图像,或者如果仅上传视频则显示视频

时间:2013-07-02 15:54:27

标签: php

非常快的新手问题。如何反转此if语句,以便在上传视频和图像时显示图像,或者如果仅上传视频则显示视频?

<?php if ( $video ) : ?>
<div class="feature_vid"><?php echo $video; ?></div>
<?php else: ?>
<div class="feature_img"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_post_thumbnail( 'portfolio-small' ); ?></a></div>
<?php endif; ?>

谢谢!

1 个答案:

答案 0 :(得分:0)

如果图像变量为$ image,您永远不想要显示视频......

<?php 
    echo('<div class="feature_img"><a href="' . the_permalink() . '" rel="bookmark" title="' . the_title_attribute());
 ?>