Automattic\WooCommerce\Blocks\BlockTypes
ProductBestSellers{}└─ AbstractProductGrid
ProductBestSellers class.
No Hooks.
Usage
$ProductBestSellers = new ProductBestSellers(); // use class methods
Methods
- protected set_block_query_args( &$query_args )
ProductBestSellers{} ProductBestSellers{} code WC 10.5.0
class ProductBestSellers extends AbstractProductGrid {
/**
* Block name.
*
* @var string
*/
protected $block_name = 'product-best-sellers';
/**
* Set args specific to this block
*
* @param array $query_args Query args.
*/
protected function set_block_query_args( &$query_args ) {
$query_args['orderby'] = 'popularity';
}
}