WC_Shortcodes::best_selling_products() public WC 1.0
List best selling products on sale.
{} Это метод класса: WC_Shortcodes{}
Хуков нет.
Возвращает
Строку.
Использование
$result = WC_Shortcodes::best_selling_products( $atts );
- $atts(массив) (обязательный)
- Attributes.
Код WC_Shortcodes::best_selling_products() WC Shortcodes::best selling products WC 5.0.0
public static function best_selling_products( $atts ) {
$atts = array_merge(
array(
'limit' => '12',
'columns' => '4',
'category' => '',
'cat_operator' => 'IN',
),
(array) $atts
);
$shortcode = new WC_Shortcode_Products( $atts, 'best_selling_products' );
return $shortcode->get_content();
}