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