Automattic\WooCommerce\Blocks\BlockTypes
ProductBestSellers{}
ProductBestSellers class.
No Hooks.
Usage
$ProductBestSellers = new ProductBestSellers(); // use class methods
Methods
- protected set_block_query_args( &$query_args )
ProductBestSellers{} ProductBestSellers{} code WC 9.7.1
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'; } }