Automattic\WooCommerce\Blocks\BlockTypes

ProductBestSellers::set_block_query_args()protectedWC 1.0

Set args specific to this block

Method of the class: ProductBestSellers{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->set_block_query_args( $query_args );
$query_args(array) (required) (passed by reference — &)
Query args.

ProductBestSellers::set_block_query_args() code WC 8.7.0

protected function set_block_query_args( &$query_args ) {
	$query_args['orderby'] = 'popularity';
}