gpt4 book ai didi

wordpress - 设置目录可见性隐藏 woo-commerce

转载 作者:行者123 更新时间:2023-12-01 22:57:13 26 4
gpt4 key购买 nike

如何以编程方式设置隐藏在 woo-commerce WordPress 中的目录可见性?

就像这里提到的:

https://docs.woothemes.com/document/catalog-visibility-options/

但我找不到任何钩子(Hook)或黑客,如何在 PHP 中做到这一点。

最佳答案

我已经尝试这样做了几天,但在线上没有任何内容,所以我阅读了 woocommerce 文档并发现在 woocommerce 3.x.x 中,可见性是一种称为“product_visibility”的分类法。

为此,您应该设置分类术语,例如:

//Set product hidden: 
$terms = array( 'exclude-from-catalog', 'exclude-from-search' );
wp_set_object_terms( $post_id, $terms, 'product_visibility' );

//Set product visible in catalog:
$terms = 'exclude-from-search';
wp_set_object_terms( $post_id, $terms, 'product_visibility' );

//Set product visible in search:
$terms = 'exclude-from-catalog';
wp_set_object_terms( $post_id, $terms, 'product_visibility' );

所有可能的分类术语:
"exclude-from-catalog"
"exclude-from-search"
"featured"
"outofstock"

关于wordpress - 设置目录可见性隐藏 woo-commerce,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36522439/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com