我正在编辑带有$ image对象的nextgen gallery插件。我希望能够将这个$ image对象传递给我的侧边栏中的php小部件,这样我就可以在那里回复有关$ image的信息。我怎么能这样做?
以下是侧边栏中我想要的模板示例。当我粘贴php时它不起作用,因为它没有引用$ image对象。
<?php if(!empty($image->ngg_custom_fields["buy-1"])){?>
<ul class="buying-list">
<li><?php echo $image->ngg_custom_fields["text-1"]; ?> </li>
<li><?php echo $image->ngg_custom_fields["buy-1"]; ?> </li>
</ul>
<?php }; ?>