我有一个名为“books”的自定义帖子类型,如何通过Woocommerce购买“book”。我已经尝试了以下代码,这些代码已在网络上提到过。我已经编辑了帖子类型来预订和我的元关键是价格。
add_filter('woocommerce_get_price','reigel_woocommerce_get_price',10,3);
function reigel_woocommerce_get_price($price,$post){
if ($post->$post->post_type === 'book')
{
$price = get_post_meta($post->ID, "price", true);
}
return $price;
}
但代码似乎在运行。钩子没有得到执行,而“$ post”没有提出自定义帖子的ID。它只会带来通过woocommerce产品添加的产品。我正在使用woocommerce 3.0.7。任何帮助将不胜感激
这个方法有没有解决方法