Wordpress:隐藏图库中的精选图片缩略图

时间:2013-08-22 23:50:43

标签: php html css wordpress gallery

<div id="imgcontent"> 
<?php my_attachment_gallery(0, 'large', 'alt="' . $post->post_title . '"'); ?> 
</div> <?php endwhile; // end of the loop. ?>    

我想从图库中排除特色图片,它显示为图库的第一张图片。反正有吗?

1 个答案:

答案 0 :(得分:1)

所有这些都可能有所帮助..

img{
    width:0px;
    height:0px;
    display:none;
    visibility:hidden;
}

更有可能你应该只使用display none。你也应该使用javascript直接解析php到html而不是php,这可能会带来巨大的安全漏洞。

请注意,如果您不想显示网址,请加密网址。