Plogger 图库 -- 简单的定制问题

发布于 2024-10-28 16:17:39 字数 257 浏览 1 评论 0原文

我想知道是否可以通过对 Plogger 模板进行简单编辑来在缩略图下显示文件名而不是默认的“标题”?我正在创建一个大型画廊,需要在拇指下有一个描述性名称,此时必须手动为每个画廊添加标题。可以在此处查看示例(请注意,拇指下方没有出现任何文本(b/c 标题未添加)。

感谢您在这里提供的任何帮助。

I'm wondering if it's possible via a simple edit to the Plogger template to display filenames under thumbnails instead of the default "caption"? I'm creating a large gallery and need to have a descriptive name under the thumbs and at this point must manually add a caption for each. An example can be viewed here (note that no text appears under the thumbs b/c captions were not added).

Thanks for any assistance here.

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

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

发布评论

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

评论(2

娇柔作态 2024-11-04 16:17:39

好吧,我觉得很傻,但这都是一个学习过程......对于那些在修改 Plogger gallery 脚本时可能遇到同样问题的人,我在深入研究源代码后发现我可以简单地将“plogger_get_picture_caption”更改为“plogger_get_picture_filename” " 在相应主题目录中的 album.php 文件中。相当合乎逻辑的解决方案:)

well I feel silly, but it's all a learning process... to those on here who might encounter the same question in modifying the Plogger gallery script, I discovered after some digging through the source that I could simply change "plogger_get_picture_caption" to "plogger_get_picture_filename" in the album.php file within the appropriate theme directory. rather logical solution :)

喜爱纠缠 2024-11-04 16:17:39

导入脚本不存储原始文件名的大小写,因此获取它的最佳方法是在导入时。

您可以修改 /plog-admin/plog-import.php 以在导入时将文件名放在标题字段中,方法是将行(315?)更改

<input type="text" size="60" style="width: 95%;" name="captions['.$file_key.']" /><br />

为:

<input type="text" size="60" style="width: 95%;" name="captions['.$file_key.']" value="'.substr(basename($files[$i]), 0, -4).'" /><br />

The import script does not store the case of the original filename, so the best way to get it is while importing.

You can modify /plog-admin/plog-import.php to put the filename in the caption field when importing by changing the line (315?) that reads:

<input type="text" size="60" style="width: 95%;" name="captions['.$file_key.']" /><br />

to:

<input type="text" size="60" style="width: 95%;" name="captions['.$file_key.']" value="'.substr(basename($files[$i]), 0, -4).'" /><br />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文