0

我想为通过 WP 电子商务插件添加的每个产品显示一个唯一的标题图像。

我在高级设置标题下的自定义元中添加了图像的 URL。

我无法弄清楚如何在 header.php 的 WP 电子商务插件的自定义元中添加数据?

请有任何建议。


更新:

我尝试了以下在 wpsc-single-product.php 中找到的代码

if (wpsc_have_custom_meta()) :
    while ( wpsc_have_custom_meta() ) : wpsc_the_custom_meta();
        $product_meta = wpsc_custom_meta_value();
    endwhile;
endif;

这显示以下错误:致命错误:在第 1304 行的 wp-content/plugins/wp-e-commerce/wpsc-includes/product-template.php 中的非对象上调用成员函数 have_custom_meta()

4

1 回答 1

0

这取决于您放置该代码的位置。如果在第 29 行之后没有输入:

while ( wpsc_have_products() ) : wpsc_the_product();

...那么它不在 The Loop 内,获取自定义元数据将导致错误。

于 2012-04-16T13:40:06.883 回答