WC_Shortcode_Products::set_ids_query_args()protectedWC 3.2.0

Set ids query args.

Method of the class: WC_Shortcode_Products{}

No Hooks.

Return

null. Nothing (null).

Usage

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

Changelog

Since 3.2.0 Introduced.

WC_Shortcode_Products::set_ids_query_args() code WC 8.7.0

protected function set_ids_query_args( &$query_args ) {
	if ( ! empty( $this->attributes['ids'] ) ) {
		$ids = array_map( 'trim', explode( ',', $this->attributes['ids'] ) );

		if ( 1 === count( $ids ) ) {
			$query_args['p'] = $ids[0];
		} else {
			$query_args['post__in'] = $ids;
		}
	}
}