WC_Report_Sales_By_Product::current_filters()
Output current filters.
Метод класса: WC_Report_Sales_By_Product{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
$WC_Report_Sales_By_Product = new WC_Report_Sales_By_Product(); $WC_Report_Sales_By_Product->current_filters();
Код WC_Report_Sales_By_Product::current_filters() WC Report Sales By Product::current filters WC 9.4.2
public function current_filters() { $this->product_ids_titles = array(); foreach ( $this->product_ids as $product_id ) { $product = wc_get_product( $product_id ); if ( $product ) { $this->product_ids_titles[] = $product->get_formatted_name(); } else { $this->product_ids_titles[] = '#' . $product_id; } } echo '<p><strong>' . wp_kses_post( implode( ', ', $this->product_ids_titles ) ) . '</strong></p>'; echo '<p><a class="button" href="' . esc_url( remove_query_arg( 'product_ids' ) ) . '">' . esc_html__( 'Reset', 'woocommerce' ) . '</a></p>'; }