从NextGen库中检索图像的链接和名称

时间:2012-12-09 作者:Omer

我想在我的nextgen gallery旁边添加一个名称列表(如cd曲目列表)和所有图像的链接,如何检索此列表?(类似于“库管理”页面中“库设置”中“选择对象”中的列表)

2 个回复
SO网友:Omer

好吧,这对我很有效。

<?php 
// get the track list 
global $nggdb;
    $gallery = $nggdb->get_gallery ($galleryID, \'sortorder\', \'ASC\', true, 0, 0);
?>
<div id="tracklist">
<?php foreach($gallery as $image) { ?>
<div class="single_image" id="image-<?php echo $image->pid; ?>">
    <a href="<?php the_permalink() ?>&pid=<?php echo $image->pid;?>" title="<?php echo $image->title; ?>">
        <?php echo $image->alttext; ?>
    </a>
</div>
<?php } ?>
</div>  

SO网友:Upeksha

您可以使用类似于下面的函数来检索下一代图像库中的图像属性列表。

function wp75475_imagelist(){

//http://codex.wordpress.org/Function_Reference/is_plugin_active
include_once( ABSPATH . \'wp-admin/includes/plugin.php\' );

if(!is_plugin_active(\'nextgen-gallery/nggallery.php\')){
    return \'NextGen Gallery Plugin is needed to display imagelist\';
}

$imagegallery = new nggdb();
$images = $imagegallery->get_gallery(\'cdtrack\');
$imagelist = \'\';

foreach ($images as $image):
    $imagelist .= $image->$filename;
endforeach;

return $imagelist;

}
有关可检索图像属性的列表,请参阅nggImage对象的属性。

/下一个图库/库/图像。php

结束

相关推荐

多个单个站点,一个插件目录-调整plugins_url()

[这不是一个多站点问题]更新:这个问题在逻辑上是不可能的,或者是思维循环,如果你愿意的话,请检查下面的更新。技术是laid out here in WPEngineer.它允许有一个插件文件夹来为运行在同一服务器上的多个WordPress站点提供服务。所以,我所有的开发站点都在wp配置中有这个。phpdefine( \'WP_PLUGIN_DIR\', \'/www_dev/base-site/wp-content/plugins\' ); define( \'WP_PLUGIN_URL\', \

从NextGen库中检索图像的链接和名称 - 小码农CODE - 行之有效找到问题解决它

从NextGen库中检索图像的链接和名称

时间:2012-12-09 作者:Omer

我想在我的nextgen gallery旁边添加一个名称列表(如cd曲目列表)和所有图像的链接,如何检索此列表?(类似于“库管理”页面中“库设置”中“选择对象”中的列表)

2 个回复
SO网友:Omer

好吧,这对我很有效。

<?php 
// get the track list 
global $nggdb;
    $gallery = $nggdb->get_gallery ($galleryID, \'sortorder\', \'ASC\', true, 0, 0);
?>
<div id="tracklist">
<?php foreach($gallery as $image) { ?>
<div class="single_image" id="image-<?php echo $image->pid; ?>">
    <a href="<?php the_permalink() ?>&pid=<?php echo $image->pid;?>" title="<?php echo $image->title; ?>">
        <?php echo $image->alttext; ?>
    </a>
</div>
<?php } ?>
</div>  

SO网友:Upeksha

您可以使用类似于下面的函数来检索下一代图像库中的图像属性列表。

function wp75475_imagelist(){

//http://codex.wordpress.org/Function_Reference/is_plugin_active
include_once( ABSPATH . \'wp-admin/includes/plugin.php\' );

if(!is_plugin_active(\'nextgen-gallery/nggallery.php\')){
    return \'NextGen Gallery Plugin is needed to display imagelist\';
}

$imagegallery = new nggdb();
$images = $imagegallery->get_gallery(\'cdtrack\');
$imagelist = \'\';

foreach ($images as $image):
    $imagelist .= $image->$filename;
endforeach;

return $imagelist;

}
有关可检索图像属性的列表,请参阅nggImage对象的属性。

/下一个图库/库/图像。php

相关推荐

更新页面(update-core.php)和插件页面(plugins.php)恢复到主页

我在Wordpress网站的管理视图中收到通知,我有一个网站和插件的可用更新(在我的网络管理仪表板中,在“插件”和“更新”旁边的红色圆圈中有“1”)。。。但当我尝试同时转到“更新”页和;插件页面,是否显示主页?此时的URL为http:///wp-admin/network/update-core.php/和http:///wp-admin/plugins.php/分别地因此,我永远无法到达真正的更新页面,也无法更新我的Wordpress或插件。如何显示更新或插件页面?