if( active_woocommerce_filters() ) { echo str_replace( '%s', active_woocommerce_filters(), 'There are %s filters active' ); } else { echo 'There are no filters active'; } //Kiểm tra bộ lọc Woocommerce được kích hoạt if ( is_filtered() ) { echo esc_html__('Some filters are active.', 'text-domain'); } else { echo esc_html__('No filters are active.', 'text-domain'); } Kiểm tra bộ lọc Woocommerce được kích hoạt function active_woocommerce_filters() { // for older WC versions // global $_chosen_attributes; $_chosen_attributes = WC_Query::get_layered_nav_chosen_attributes(); return count( $_chosen_attributes ); }