如果沒有證書,我如何隱藏img標籤?在Wordpress的自定義函數中使用條件標記/ if/else?
(功能是從本教程: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 } ?>