Add a filter dropdown for product tags in woocommerce admin product list

前端 未结 2 1365
余生分开走
余生分开走 2021-01-23 05:09

I want to also add a filter tag next to the filter by category in the woocommerce products page. Below image is in ducth but I want to add another dropdown menu if possible.

2条回答
  •  情书的邮戳
    2021-01-23 06:12

    Try the following that will add filtering for product tags in admin product list:

    add_action('restrict_manage_posts', 'product_tags_sorting');
    function product_tags_sorting() {
        global $typenow;
    
        $taxonomy  = 'product_tag';
    
        if ( $typenow == 'product' ) {
    
    
            $selected      = isset($_GET[$taxonomy]) ? $_GET[$taxonomy] : '';
            $info_taxonomy = get_taxonomy($taxonomy);
    
            wp_dropdown_categories(array(
                'show_option_all' => __("Show all {$info_taxonomy->label}"),
                'taxonomy'        => $taxonomy,
                'name'            => $taxonomy,
                'orderby'         => 'name',
                'selected'        => $selected,
                'show_count'      => true,
                'hide_empty'      => true,
            ));
        };
    }
    
    add_action('parse_query', 'product_tags_sorting_query');
    function product_tags_sorting_query($query) {
        global $pagenow;
    
        $taxonomy  = 'product_tag';
    
        $q_vars    = &$query->query_vars;
        if ( $pagenow == 'edit.php' && isset($q_vars['post_type']) && $q_vars['post_type'] == 'product' && isset($q_vars[$taxonomy]) && is_numeric($q_vars[$taxonomy]) && $q_vars[$taxonomy] != 0 ) {
            $term = get_term_by('id', $q_vars[$taxonomy], $taxonomy);
            $q_vars[$taxonomy] = $term->slug;
        }
    }
    

    Code goes in functions.php file of your active child theme (or active theme). Tested and works.

提交回复
热议问题