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

前端 未结 2 1366
余生分开走
余生分开走 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 05:56

    you need to use woocommerce_product_filters filter as follow:

    add_filter('woocommerce_product_filters', 'tag_filter', 10, 1);
    
    function tag_filter($output)
    {
     $terms = get_terms('product_tag'); //Get all Tags
     ?> 
    
            

    Output :

    of course you need to place this code inside your functions.php

提交回复
热议问题