0

我想在 NextGen 库中显示标题。该插件没有为此提供选项,因此我必须以某种方式绕过它并修改代码。

下一代版本:2.0.33。

有没有人遇到过同样的问题?我该如何解决?

4

3 回答 3

2

Stefan - 视图文件夹位于 modules/nglegacy 文件夹中。我猜是新版本。

至于画廊标题,我修改了我在这里找到的一些代码,

http://psychopixi.com/tech/how-to-link-back-to-an-album-in-a-nextgen-gallery/

它实际上是用于显示面包屑并提供后退按钮,但如果您在第 10 行和第 13 行更改迭代器 myi 和 myi2 的值,它只会输出标题,您可以根据需要对其进行格式化。

根据他们的建议,我使用插件 Shortcode Exec PHP 来制作简码,然后将其放在我的画廊页面中。然后,您可以在之后放置您的画廊的简码。

这不是一个优雅的解决方案,它假定您的画廊的网址中包含画廊的名称。

祝你好运。

于 2013-10-27T08:33:47.727 回答
0
<?php echo $gallery->title ?>

将其放置在您的画廊模板文件中需要的任何地方。

于 2013-10-25T12:08:59.840 回答
0

I found a solution to this problem having searched all day on inet.

Your 'view' folder is in the ngglegacy folder of the plugin. You can add <?php echo $gallery->title ?> to that file. Then goto Gallery options in your admin area and select gallery.php to show for the Basic Thumbnails.

thats it!

于 2014-01-22T15:16:31.220 回答