显示NextGen Gallery标题

时间:2014-03-17 10:00:35

标签: php wordpress-plugin wordpress nextgen-gallery

我有一段时间的问题,我找不到合适的解决方案。许多解决方案都很老,在我的情况下不起作用。

我有一个wordpress网站,安装了nextgen gallery插件。现在我想在图库页面顶部显示图库名称。

我在其他网页上使用的选项是:$ gallery-> title

但这不起作用。

我的网站为here,图库为here

我正在使用的文件位于此路径(index.php)中: /插件/次世代画廊/产品/ photocrati_nextgen /模块/ nextgen_basic_gallery /模板/缩略图

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

http://wordpress.org/support/topic/is-it-possible-to-display-title-on-gallery-page

谢天谢地! (k33f)

 <?php
 // This develish little snippet is responsible for displaying the Gallery title when viewing a gallery thumbnail page
 global $wpdb;
 $gal_id = $displayed_gallery->container_ids;
 $myrow = $wpdb->get_row("SELECT * FROM wp_ngg_gallery WHERE gid = $gal_id[0]");
 echo '<h1 style="padding-bottom: 20px;">' . $myrow->title . '</h1>';
 ?>
相关问题