自动从Woocommerce的非促销产品中删除促销产品类别

时间:2018-09-30 06:04:15

标签: php wordpress woocommerce product custom-taxonomy

在woocommerce中,我使用the code from this answer thread,将“销售”产品类别分配给正在销售的产品(因此具有有效的销售价格)

当产品不再销售而没有成功时,我尝试删除“销售”产品类别。当不再销售时,是否可以从“销售”类别中自动删除产品?

1 个答案:

答案 0 :(得分:1)

以下版本代码将在不再销售时自动将其从“销售”类别中删除:

add_action( 'save_post_product', 'update_product_set_sale_cat' );
function update_product_set_sale_cat( $post_id ) {
    if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
        return $post_id;
    }
    if ( ! current_user_can( 'edit_product', $post_id ) ) {
        return $post_id;
    }
    if( get_post_status( $post_id ) == 'publish' && isset($_POST['_sale_price']) ) {
        $sale_price = $_POST['_sale_price'];

        if( $sale_price >= 0 && ! has_term( 'Sale', 'product_cat', $post_id ) ){
            wp_set_object_terms($post_id, 'sale', 'product_cat', true );
        } elseif ( $sale_price == '' && has_term( 'Sale', 'product_cat', $post_id ) ) {
            wp_remove_object_terms( $post_id, 'sale', 'product_cat' );
        }
    }
}

代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试,可以正常工作。

相关:Adding "Sale" product category to products that are on sale in Woocommerce