MODX Gallery:如何获取文件夹中的图像数量?

发布于 2025-01-02 02:28:36 字数 865 浏览 1 评论 0原文

我将 MODx Revolution 版本 2.20 与 图库模块 版本 1.4.0 一起使用。 所以,我需要获取文件夹中图像的数量。我用谷歌搜索了它,但没有找到任何有效的解决方案。

我怎样才能得到它?谢谢。

好的,这就是解决方案。

代码段调用

[[!GalleryAlbums? &parent=`5` &showAll=`1` &sort=`rank` &dir=`ASC` &limit=`50` &rowTpl=`b-top-img`]]

b-top-img代码段

      <!-- p-cover -->
      <div class="p-cover [[+id]]">
        [[!Gallery? &album=`[[+id]]` &thumbWidth=`300px` &thumbHeight=`300px` &thumbTpl=`b-middle-img`]]
      </div>
      <!-- /p-cover -->   

b-middle-img

      <div class="p"><img src="[[+thumbnail]]" alt="[[+name]]" /></div> 

I use MODx Revolution ver.2.20 with Gallery module ver.1.4.0.
So, I need to get the number of images in a folder. I googled it, but I didn't find any working solution.

How can I get it? Thanks.

Ok, this is the solution.

Snippet call

[[!GalleryAlbums? &parent=`5` &showAll=`1` &sort=`rank` &dir=`ASC` &limit=`50` &rowTpl=`b-top-img`]]

b-top-img snippet

      <!-- p-cover -->
      <div class="p-cover [[+id]]">
        [[!Gallery? &album=`[[+id]]` &thumbWidth=`300px` &thumbHeight=`300px` &thumbTpl=`b-middle-img`]]
      </div>
      <!-- /p-cover -->   

b-middle-img chunk

      <div class="p"><img src="[[+thumbnail]]" alt="[[+name]]" /></div> 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是一片海 2025-01-09 02:28:36

如果您熟悉 PHP,您可以从此示例创建自己的代码片段 - http:// /rtfm.modx.com/display/ADDON/Gallery.GalleryItem.GalleryItemPagination

If you are familiar with PHP you can create your own snippet from this example — http://rtfm.modx.com/display/ADDON/Gallery.GalleryItem.GalleryItemPagination

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文