WordPress:将复选框添加到自定义分类法添加/编辑表单

时间:2016-04-19 22:46:28

标签: php html wordpress checkbox custom-taxonomy

我需要在自定义分类添加/编辑表单中添加一个复选框列表。 我有这个代码在我的插件中添加自定义分类表单的文本字段,它工作正常:

    <?php
    function taxonomy_edit_meta_field($term) {
        $t_id = $term->term_id;
        $term_meta = get_option( "taxonomy_$t_id" ); 
    ?>

        <tr class="form-field">
            <th scope="row" valign="top"><label for="term_meta[custom_term_meta]"><?php _e( 'Term:' ); ?></label></th>
            <td>
                <input type="text" name="term_meta[custom_term_meta]" id="term_meta[custom_term_meta]" value="<?php echo esc_attr( $term_meta['custom_term_meta'] ) ? esc_attr( $term_meta['custom_term_meta'] ) : ''; ?>">
            </td>
        </tr>

    <?php
    }
    add_action( 'product_cat_edit_form_fields', 'taxonomy_edit_meta_field', 10, 2 );

    function save_taxonomy_custom_meta( $term_id ) {
        if ( isset( $_POST['term_meta'] ) ) {
            $t_id = $term_id;
            $term_meta = get_option( "taxonomy_$t_id" );
            $cat_keys = array_keys( $_POST['term_meta'] );
            foreach ( $cat_keys as $key ) {
                if ( isset ( $_POST['term_meta'][$key] ) ) {
                    $term_meta[$key] = $_POST['term_meta'][$key];
                }
            }
            update_option( "taxonomy_$t_id", $term_meta );
        }
    }  
    add_action( 'edited_product_cat', 'save_taxonomy_custom_meta', 10, 2 );  
    add_action( 'create_product_cat', 'save_taxonomy_custom_meta', 10, 2 );

如何以相同的方式添加复选框列表?

2 个答案:

答案 0 :(得分:1)

保存未检查复选框输入有问题。 我已使用与“name”属性相同的值输入类型=“hidden”修复它,就像在复选框输入中一样。

    <tr class="form-field">
        <th scope="row" valign="top"><label for="term_meta[custom_term_meta]"><?php _e( 'Color:' ); ?></label></th>
        <td>
            <input type="hidden" value="0" name="term_meta[pa_color_attr]">
            <input type="checkbox" <?php echo (!empty($term_meta['pa_color_attr']) ? ' checked="checked" ' : 'test'); ?> value="1" name="term_meta[pa_color_attr]" />
        </td>
    </tr>

答案 1 :(得分:0)

您需要更改挂钩的名称。

 add_action( 'edited_custom_tax', 'save_taxonomy_custom_meta', 10, 2 );