有没有办法检索产品类别基础永久链接?
感谢名单。
的修改
我正在添加此图片作为示例:
我正在寻找一种get_?option?('?product-category-base?')
类型的函数,在此示例中,它应该只返回 字符串:whatever
。
编辑2
我发布的图片是来自wordpress dashboard
- >的裁剪。 Settings
- > Permalink
并表示additional settings
- > product-category-base
。
我需要检查管理员在字段Product category base
中最终插入的值,我猜有一种get_option()
函数的密钥...
感谢名单。
答案 0 :(得分:1)
(可能)对于OP来说为时已晚,但是如果遇到其他任何人,则您想要的选项是woocommerce_permalinks
,并且在其中使用category_base
键。
最小示例(不做任何检查等):
$wc_options = get_option('woocommerce_permalinks');
$product_category_base = $wc_options['category_base'];
答案 1 :(得分:0)
编辑: 那你在寻找类别? 至少在Woocommerce官方网站上解释
默认类别基础是产品类别。一个例子是 yourdomain.com/product-category/category-name。
您可以通过以下方式获取产品的类别(或类别)。
global $product;
echo $product->get_categories( ', ', ' ' . _n( ' ', ' ', $cat_count, 'woocommerce' ) . ' ', ' ' );
原帖
我不认为我理解你的问题。 你是说这个固定链接吗?
echo $Permalink=$product->get_permalink();
返回此(我编辑后省略了我的网站)。
http://mysiteurl.com/product/4-pack/
我不确定你想用它做什么?你能解释一下吗?