我正在编辑 $image 对象附带的 nextgen 画廊插件。我希望能够将这个 $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 }; ?>