📜  在目录价格规则中添加“受影响的产品” - PHP (1)

📅  最后修改于: 2023-12-03 15:23:35.533000             🧑  作者: Mango

在目录价格规则中添加“受影响的产品” - PHP

在创建目录中的价格规则时,我们可能需要指定哪些产品受到该规则的影响。在本篇文章中,我们将介绍如何在PHP中实现此功能。

代码示例

首先,我们需要在目录中添加一个字段来存储“受影响的产品”。可以使用WordPress中的add_meta_box函数来添加一个自定义字段。

function add_affected_products_meta_box() {
    add_meta_box(
        'affected_products',
        '受影响的产品',
        'render_affected_products_meta_box',
        'product',
        'side'
    );
}
add_action( 'add_meta_boxes', 'add_affected_products_meta_box' );

接下来,我们需要在回调函数中添加表单元素以输入“受影响的产品”。这可以使用HTML和JavaScript来实现。

function render_affected_products_meta_box( $post ) {
    wp_nonce_field( basename( __FILE__ ), 'affected_products_nonce' );
    
    $affected_products = get_post_meta( $post->ID, 'affected_products', true );
    
    ?>
    <fieldset id="affected_products_fieldset">
        <legend class="screen-reader-text">受影响的产品</legend>
        <label for="affected_products">
            输入受影响的产品
        </label>
        <input type="text" name="affected_products" id="affected_products" value="<?php echo esc_attr( $affected_products ); ?>" />
    </fieldset>
    <?php  
}

最后,我们需要在保存帖子时更新受影响的产品元数据。

function save_affected_products_meta_data( $post_id ) {
    if ( ! isset( $_POST['affected_products_nonce'] ) || ! wp_verify_nonce( $_POST['affected_products_nonce'], basename( __FILE__ ) ) ) {
        return $post_id;
    }
    
    if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
        return $post_id;
    }
    
    if ( isset( $_POST['post_type'] ) && 'product' == $_POST['post_type'] ) {

        if ( ! current_user_can( 'edit_page', $post_id ) ) {
            return $post_id;
        }
        
    } else {
        
        if ( ! current_user_can( 'edit_post', $post_id ) ) {
            return $post_id;
        }
    }
    
    $affected_products = sanitize_text_field( $_POST['affected_products'] );
    update_post_meta( $post_id, 'affected_products', $affected_products );
    
}
add_action( 'save_post', 'save_affected_products_meta_data' );

现在,我们已经成功地将“受影响的产品”这个字段添加到了目录中的价格规则中。我们可以使用get_post_meta函数来获取受影响的产品列表。

$affected_products = get_post_meta( $post->ID, 'affected_products', true );
结论

在本篇文章中,我们学习了如何在PHP中向目录价格规则中添加“受影响的产品”字段。使用WordPress的add_meta_box函数、HTML、JavaScript以及get_post_meta和update_post_meta函数,我们可以轻松地实现这个功能。