我想为通过 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()