WC_Shortcode_Products::get_transient_name()
Generate and return the transient name for this shortcode based on the query args.
Description Description
Return Return
(string)
Source Source
File: includes/shortcodes/class-wc-shortcode-products.php
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;
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.3.0 | Introduced. |