当前位置: 首页 > 知识库问答 >
问题:

获取完整的wordpress图库图像

海翔宇
2023-03-14

我在页面中有一个图像滑块,我想通过单篇文章放置图像,wordpress提供get_post_gallery功能通过单篇文章获取图像,这一阶段已经完成,但问题是它显示缩略图图像,我想在滑块上显示完整图像,就像我们在特色图像场景中所做的那样$img=wp\u get\u attachment\u image\u src(get\u post\u缩略图\u id($post-

 <?php
              query_posts('category_name=tandem-slider');
              while ( have_posts() ) : the_post();
                if ( get_post_gallery() ) :
                    $gallery = get_post_gallery( get_the_ID(), false );

                    /* Loop through all the image and output them one by one */
                    foreach( $gallery['src'] AS $src )
                    {
                        ?>
                         <div class="jump_slider_single">
                             <img src="<?php echo $src; ?>" alt="" class="img-responsive">
                             <article>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
                             tempor incididunt.</article>
                             <span class="double_shad"></span>
                        </div><!--jump_slider_single-->                 
                        <?php
                    }
                endif;
            endwhile;
        ?>

我想根据我在function.php中给出的图像大小获取图像

 if ( function_exists( 'add_image_size' ) ) { 

添加图片大小('gallery image',1350500,true);}

我是怎么做到的我很困惑

共有1个答案

华景焕
2023-03-14

试试这个:-

$gallery = get_post_gallery( get_the_ID(), false );

$ids = explode( ",", $gallery['ids'] );

foreach( $ids as $id ) {

   $link   = wp_get_attachment_url( $id );

   $image_list . = '<li>' . $link . '</li>';

} 
 类似资料:
  • 我在我的wordpress网站上使用NextGen Gallery插件。我的问题是,我的图库的缩略图不会显示它们的完整标题,而只显示第一部分。如果图库的标题是“完整的标题”,它只会在缩略图下显示“完整的......”。就像如果没有足够的空间来写完整的标题。这使得你很难找到你要找的照片。有没有办法显示完整的标题?这里是一个链接到我的网站,所以你可以看到:http://tornaia.com/bild

  • 我正在尝试使用cordova相机插件从画廊获取图像,这是我的方式: 但是在我的“成功”函数中,我得到格式为: 我想要具有图像完整路径的URI,就像我使用相机时得到它一样: 阅读官方文档,我看到我唯一应该做的就是将属性“DestinationType”设置为“FILE_URI”,正如您在上面所看到的。 我做错了什么?

  • 我想使用共享命令从图库获取图像。 我目前的代码是: imageUri 的值为:content://media/external/images/media/37 但是函数“openInputStream”会抛出错误“java.io.FileNotFoundException”。 通过下面的函数,我得到了图像的真实路径。 但我不知道如何将其转换为位图。

  • 上面的代码从一个名为“多媒体资料”的自定义帖子中提取WordPress多媒体资料,然后存储并显示图像。是否有一种方法也可以将库的标题存储到变量中?

  • 问题内容: 使用angular时,在视图内获取对象的首选方法是什么? 看起来好像有这个项目,但是看起来维护得不好。 https://github.com/gdi2290/angular- momentjs 问题答案: 有一个更受欢迎的angular-moment项目… https://github.com/urish/angular- moment 有了它,您可以像这样注入瞬间… jsfiddle

  • 我正在尝试用WordPress高级自定义字段和repeater字段插件构建一个简单的图库。我需要显示一个缩略图,你点击放大主图像(我使用的是Fancybox)。有人知道WordPress自动生成的图像缩略图的链接是否可能吗? 我可以得到主要的图像链接: /wp-content/uploads/2014/12/slide1.jpg 但需要获取此图像链接: /wp-content/uploads/20