46 lines
1.0 KiB
PHP
46 lines
1.0 KiB
PHP
<?php
|
|
/**
|
|
* Display the Best Selling Products block in the post content.
|
|
* NOTE: DO NOT edit this file in WooCommerce core, this is generated from woocommerce-gutenberg-products-block.
|
|
*
|
|
* @package WooCommerce\Blocks
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Handler for getting best selling products for display.
|
|
*/
|
|
class WGPB_Block_Product_Best_Sellers extends WGPB_Block_Grid_Base {
|
|
/**
|
|
* Block name.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $block_name = 'product-best-sellers';
|
|
|
|
/**
|
|
* Get the block's attributes.
|
|
*
|
|
* @param array $attributes Block attributes. Default empty array.
|
|
* @return array Block attributes merged with defaults.
|
|
*/
|
|
protected function parse_attributes( $attributes ) {
|
|
$attributes = parent::parse_attributes( $attributes );
|
|
|
|
// Force orderby to popularity.
|
|
$attributes['orderby'] = 'popularity';
|
|
|
|
return $attributes;
|
|
}
|
|
|
|
/**
|
|
* Set args specific to this block
|
|
*
|
|
* @param array $query_args Query args.
|
|
*/
|
|
protected function set_block_query_args( &$query_args ) {}
|
|
}
|