This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Function that returns an array containing the IDs of the featured products. | |
* | |
* @since 2.0 | |
* @access public | |
* @return array | |
*/ | |
function woo_get_featured_product_ids() { | |
// Load from cache | |
$featured_product_ids = get_transient( 'wc_featured_products' ); |