我想为通过WP电子商务插件添加的每个产品显示唯一的标题图像。
我在高级设置标题下的自定义元数据中添加了图像的网址。
我无法弄清楚如何在header.php中的WP电子商务插件的Custom Meta中添加数据?
请提出任何建议。
更新
我尝试使用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()
答案 0 :(得分:0)
这取决于您放置该代码的位置。如果你没有在第29行之后输入它:
while ( wpsc_have_products() ) : wpsc_the_product();
...然后它不在The Loop中,获取自定义元数据将导致错误。