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.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
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.
回答2:
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
?> <select name="product_tag" id="product_tag_id">
<option value="">Filter by product tags </option>
<?php
foreach ($terms as $term) { //Loop Throug tags and print the option with Tag Name
echo '<option value=' . $term->name . '> ' . $term->name .
'</option>';
}
?>
</select>
<?php
}
Output :
of course you need to place this code inside your functions.php