WC_Shortcode_Products::get_transient_name
Generate and return the transient name for this shortcode based on the query args.
Method of the class: WC_Shortcode_Products{}
Hooks from the method
Returns
String.
Usage
// protected - for code of main (parent) or child class $result = $this->get_transient_name();
Changelog
| Since 3.3.0 | Introduced. |
WC_Shortcode_Products::get_transient_name() WC Shortcode Products::get transient name code WC 10.7.0
protected function get_transient_name() {
$transient_name = 'wc_product_loop_' . md5( wp_json_encode( $this->query_args ) . $this->type );
if ( 'rand' === $this->query_args['orderby'] ) {
// When using rand, we'll cache a number of random queries and pull those to avoid querying rand on each page load.
$rand_index = wp_rand( 0, max( 1, absint( apply_filters( 'woocommerce_product_query_max_rand_cache_count', 5 ) ) ) );
$transient_name .= $rand_index;
}
return $transient_name;
}