MODX Gallery:如何获取文件夹中的图像数量?
我将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您熟悉 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