是否在图库视图中关闭图像标题?

时间:2011-05-31 作者:Chris

我已设置循环附件。php使用WordPress Codex中的以下代码在主选定图像上方显示缩略图库:

<?php
    $gallery_shortcode = \'[gallery id="\' . intval( $post->post_parent ) . \'" size="mini-thumbnail" columns="10"]\';
    print apply_filters( \'the_content\', $gallery_shortcode );
?>
然而,如果图像有标题,它就会显示在图像的下面,抛开我整洁的小网格图像。我不想完全关闭标题或根本不使用它们,因为在网格和主960x540图像下面,我想做一个“图像摘要”类型的部分,包括文件名、原始大小、标题、描述等。

有没有办法关闭上述代码中的标题?WordPress Codex的gallery shortcode部分没有任何内容。

2 个回复
最合适的回答,由SO网友:xLRDxREVENGEx 整理而成

您始终可以只设置css标记display:none 到标题元素

SO网友:IBRAHIM EZZAT

或者您可以通过jquery动态地完成它-可能是在某些条件下完成的

( function( $ ) {    
    //you can put this line of code after some condition function
     $( \'.gallery-caption\').css({display:\'none\'});

} )( jQuery );

结束

相关推荐

Shortcode content filter?

我在找东西,但不知道是什么。我有一个短码,我们叫它[短码]。用户将在其中输入HTML标记,主要是图像,但也包括链接、链接中的图像等,例如:[shortcode] <img src=\"http://www.site.com/myimage.jpg\" /> <a href=\"http://www.blabla.com\"><img src=\"http://www.site.com/myimage2.jpg\" /></a> (..