后端的分类下拉列表元框


9

我创建了称为的自定义分类法Brands并将其分类,因此可以在此处添加Car品牌和模型并保持它们之间的关系,如下所示:

  • 福特汽车
    • 野马
    • 蒙迪欧
    • 焦点

问题是,此列表可能会很长,每个帖子仅需要一个品牌和一个模型,因此复选框具有误导性。

我正在考虑将该metabox分为两个(一个用于品牌,一个用于模型),并使其下拉。因此,当在第一个下拉列表中选择品牌时,第二个下拉列表将仅显示与该品牌相关的模型。但是我不知道如何编码。也许有人可以给我一个例子?

Answers:


10

这是一个例子。我还用更多通用代码创建了一个Gist

add_action('add_meta_boxes', 'my_custom_metabox');
function my_custom_metabox() {
    add_meta_box('custom-taxonomy-dropdown','Brands','taxonomy_dropdowns_box','post','side','high');
}

function taxonomy_dropdowns_box( $post ) {
    wp_nonce_field('custom-dropdown', 'dropdown-nonce');
    $terms = get_terms( 'brands', 'hide_empty=0');
    $object_terms = wp_get_object_terms( $post->ID, 'brands', array('fields'=>'ids'));

    // you can move the below java script to admin_head
?>
    <script type="text/javascript">
        jQuery(document).ready(function() {
                jQuery('#custombrandoptions').change(function() {
                    var custombrand = jQuery('#custombrandoptions').val();
                    if ( custombrand == '0') {
                        jQuery('#custommodeloptions').html('');
                            jQuery('#modelcontainer').css('display', 'none');
                    } else {
                        var data = {
                            'action':'get_brand_models',
                            'custombrand':custombrand,
                            'dropdown-nonce': jQuery('#dropdown-nonce').val()
                        };
                        jQuery.post(ajaxurl, data, function(response){
                            jQuery('#custommodeloptions').html(response);
                            jQuery('#modelcontainer').css('display', 'inline');
                        });
                    }
                });
        });
    </script>
    <?php
    echo "Brand:";
    echo "<select id='custombrandoptions' name='custombrands[]'>";
    echo "<option value='0'>None</option>";
    foreach ( $terms as $term ) {
        if ( $term->parent == 0) {
            if ( in_array($term->term_id, $object_terms) ) {
                $parent_id = $term->term_id;
                echo "<option value='{$term->term_id}' selected='selected'>{$term->name}</option>";
            } else {
                echo "<option value='{$term->term_id}'>{$term->name}</option>";
            }
        }
    }
    echo "</select><br />";
    echo "<div id='modelcontainer'";
    if ( !isset( $parent_id)) echo " style='display: none;'";
    echo ">";
    echo "Models:";
    echo "<select id='custommodeloptions' name='custombrands[]'>";
    if ( isset( $parent_id)) {
        $models = get_terms( 'brands', 'hide_empty=0&child_of='.$parent_id);
        foreach ( $models as $model ) {
             if ( in_array($model->term_id, $object_terms) ) {
                echo "<option value='{$model->term_id}' selected='selected'>{$model->name}</option>";
            } else {
                echo "<option value='{$model->term_id}'>{$model->name}</option>";
            }
        }
    }
    echo "</select>";
    echo "</div>";
}

add_action('save_post','save_my_custom_taxonomy');
function save_my_custom_taxonomy( $post_id ) {
    if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE )
        return;

    if ( !wp_verify_nonce($_POST['dropdown-nonce'], 'custom-dropdown'))
        return;

    $brands = array_map('intval', $_POST['custombrands']);
    wp_set_object_terms($post_id, $brands, 'brands');
}

add_action('wp_ajax_get_brand_models', 'get_brand_models');
function get_brand_models() {
    check_ajax_referer('custom-dropdown', 'dropdown-nonce');
    if (isset($_POST['custombrand'])) {
        $models = get_terms( 'brands', 'hide_empty=0&child_of='. $_POST['custombrand']);
        echo "<option value='0'>Select one</option>";
        foreach ($models as $model) {
            echo "<option value='{$model->term_id}'>{$model->name}</option>";
        }
    }
    die();
}

@Hameedullah相当重的东西hameedullah,尽管如此,工作还是很不错的。+1
VicePrez

@Hameedullah很好。但是我有一个问题。我将所有这些代码粘贴到我的functions.php中,当我转到后端时,我得到了:警告: define()期望至少2个参数,其中1个指定给(指向此行代码:)if ( define('DOING_AUTOSAVE') && DOING_AUTOSAVE )
科瓦斯

请将定义更改为已定义,例如if ( defined('DOING_AUTOSAVE') && DOING_AUTOSAVE ))
Hameedullah Khan

@Hameedullah,太好了,谢谢您的解决方案:)
Kovas

很高兴找到这个摘要,并在网站上进行了尝试。我在自定义帖子类型上使用它,而不是在帖子上使用,但看不到元框。是否需要采取步骤才能在其他职位类型上进行这项工作?..我确实将税名更改为我的自定义分类法,仅将其用于单一税项,而不像原始请求的人那样使用多税制
shawn
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.