我正在尝试将WooCommerce价格添加到动态菜单插件中。菜单文档提供了调用日期的示例。
function date ( $content , $post , $item_id ){
$content.= '<span class="date">';
$content.= mysql2date( get_option( 'date_format' ), $post->post_date );
$content.= '</span>';
return $content;
}
add_filter( 'dp_subcontent' , 'date' , 10 , 3 );
这是我到目前为止提出的:
function menu_price($content, $price, $post , $item_id) {
global $product;
$product_id=$product->id;
echo $product_id;
$price=$product->get_price_html();
$content.= '<span class="price">';
$content.= $price;
$content.= '</span>';
return $content;
}
add_filter('ubermenu_dp_subcontent', 'woocommerce_get_price', 'menu_price', 10, 3);