我想在 NextGen 库中显示标题。该插件没有为此提供选项,因此我必须以某种方式绕过它并修改代码。
下一代版本:2.0.33。
有没有人遇到过同样的问题?我该如何解决?
我想在 NextGen 库中显示标题。该插件没有为此提供选项,因此我必须以某种方式绕过它并修改代码。
下一代版本:2.0.33。
有没有人遇到过同样的问题?我该如何解决?
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 来制作简码,然后将其放在我的画廊页面中。然后,您可以在之后放置您的画廊的简码。
这不是一个优雅的解决方案,它假定您的画廊的网址中包含画廊的名称。
祝你好运。
<?php echo $gallery->title ?>
将其放置在您的画廊模板文件中需要的任何地方。
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!