如何在图库中显示列表图像?

时间:2015-12-02 作者:DinhTv

我已将厨房创建为:[gallery columns="6" link="file" ids="156,113,99,67,103,102"]

现在,如何在中显示列表图像[gallery columns="6" link="file" ids="156,113,99,67,103,102"] 在中,索引为:

<a href="#" title=""><img src="link image in gallery">
.....
<a href="#" title=""><img src="link image in gallery">
有什么想法给我!

谢谢

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

我想你应该用get_post_gallery_images 函数,这是下面文档中的示例

function pw_show_gallery_image_urls( $content ) {

global $post;

// Only do this on singular items
if( ! is_singular() )
    return $content;

// Make sure the post has a gallery in it
if( ! has_shortcode( $post->post_content, \'gallery\' ) )
    return $content;

// Retrieve the first gallery in the post
$gallery = get_post_gallery_images( $post );

$image_list = \'<ul>\';

// Loop through each image in each gallery
foreach( $gallery as $image_url ) {

    $image_list .= \'<li>\' . \'<img src="\' . $image_url . \'">\' . \'</li>\';

}

$image_list .= \'</ul>\';

// Append our image list to the content of our post
$content .= $image_list;

return $content;

 }
 add_filter( \'the_content\', \'pw_show_gallery_image_urls\' );

https://codex.wordpress.org/Function_Reference/get_post_gallery_images

SO网友:Kushal Shah

您可以使用任何文件添加以下短代码。

<?php echo do_shortcode(\'[gallery columns="6" link="file" ids="156,113,99,67,103,102"]\'); ?>

相关推荐

Options for an SEO gallery?

我目前使用的是我喜欢的标准Wordpress图库,因为我的很多访问者在搜索了一些包含在图像描述中的文本后,通过谷歌找到了我。很明显,它以这样一种方式呈现了图库,文本被视为非常突出,我的许多访问者都通过图库进入。问题是gallery只支持纵向,而我还需要一些东西来显示横向中的图像(以避免边缘裁剪)。我发现一些允许两种方向的画廊很难将图像放在屏幕上,使它们看起来很好。我喜欢的最好的例子是Flickr,其中图像以俄罗斯方块的形式显示,但显然不允许在其下方发表评论。我完全有能力在wordpress插件中寻找一个好