我目前在购物车中有产品ID,我需要检索slug.我怎样才能做到这一点?
你可以使用get_post
$product = get_post( 27 ); $slug = $product->post_name; echo $slug;