如果没有附件,如何隐藏 img-tag?
(功能来自本教程:http ://wp.tutsplus.com/tutorials/automagic-post-thumbnails-image-management/ )
<img src="<?php get_attachment_picture();?>" />
我需要这样的东西:
<?php if ( get_attachment_picture()) { ?>
<img src="<?php get_attachment_picture();?>">
<?php } else { ?>
show nothing, not even av default image
<?php } ?>