我想为我的 wp+woocommerce 网站创建一个简码,它将显示当前产品类别的名称。我通过获取请求从我的 url 中获取类别 ID - 这是一项专业。它看起来像:
function this_product_category_name() {
$cat_id = (int) str_replace('-product_cat', '', $_GET['really_curr_tax']);
// here must be a string to get the $cat_name from $cat_id;
echo $cat_name;
}
add_shortcode( 'this_product_category_name', 'this_product_category_name' );
有什么解决办法?