如何在我的wordpress页面内容和侧边栏小部件之间传递变量

时间:2012-05-15 19:35:53

标签: php wordpress nextgen-gallery

我正在编辑带有$ 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 }; ?>

0 个答案:

没有答案