product_factory->get_product( $the_product, $args ); } /** * Update a product's stock amount * * @param int $product_id * @param int $new_stock_level */ function wc_update_product_stock( $product_id, $new_stock_level ) { $product = get_product( $product_id ); if ( $product->is_type( 'variation' ) ) $product->set_stock( $new_stock_level, true ); else $product->set_stock( $new_stock_level ); } /** * Update a product's stock status * * @param int $product_id * @param int $status */ function wc_update_product_stock_status( $product_id, $status ) { $product = get_product( $product_id ); $product-> set_stock_status( $status ); } /** * Returns whether or not SKUS are enabled. * @return bool */ function wc_product_sku_enabled() { return apply_filters( 'wc_product_sku_enabled', true ); } /** * Returns whether or not product weights are enabled. * @return bool */ function wc_product_weight_enabled() { return apply_filters( 'wc_product_weight_enabled', true ); } /** * Returns whether or not product dimensions (HxWxD) are enabled. * @return bool */ function wc_product_dimensions_enabled() { return apply_filters( 'wc_product_dimensions_enabled', true ); } /** * Clear all transients cache for product data. * * @param int $post_id (default: 0) */ function wc_delete_product_transients( $post_id = 0 ) { global $wpdb; if ( wp_using_ext_object_cache() ) { wp_cache_flush(); // There isn't a reliable method of looking up the names, so flush the cache. return; } $post_id = absint( $post_id ); // Clear core transients $transients_to_clear = array( 'wc\_products\_onsale', 'wc\_hidden\_product\_ids', 'wc\_hidden\_product\_ids\_search', 'wc\_attribute\_taxonomies', 'wc\_term\_counts', 'wc\_featured\_products' ); // Clear transients for which we don't have the name $wpdb->query( "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE ('\_transient\_wc\_uf\_pid\_%') OR `option_name` LIKE ('\_transient\_timeout\_wc\_uf\_pid\_%')" ); $wpdb->query( "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE ('\_transient\_wc\_ln\_count\_%') OR `option_name` LIKE ('\_transient\_timeout\_wc\_ln\_count\_%')" ); $wpdb->query( "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE ('\_transient\_wc\_ship\_%') OR `option_name` LIKE ('\_transient\_timeout\_wc\_ship\_%')" ); $wpdb->query( "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE ('\_transient\_wc\_products\_will\_display\_%') OR `option_name` LIKE ('\_transient\_timeout\_wc\_products\_will\_display\_%')" ); // Clear product specific transients $post_transient_names = array( 'wc_product_children_ids_', 'wc_product_total_stock_', 'wc_average_rating_', 'wc_rating_count_' ); if ( $post_id > 0 ) { foreach( $post_transient_names as $transient ) { $transients_to_clear[] = $transient . $post_id; } } else { foreach( $post_transient_names as $transient ) { $transient = str_replace('_', '\_', $transient); $wpdb->query( $wpdb->prepare( "DELETE FROM `$wpdb->options` WHERE `option_name` LIKE %s OR `option_name` LIKE %s", '\_transient\_' . $transient . '%', '\_transient\_timeout\_' . $transient . '%' ) ); } } // Delete transients foreach( $transients_to_clear as $transient ) { delete_transient( $transient ); } do_action( 'woocommerce_delete_product_transients', $post_id ); } /** * Function that returns an array containing the IDs of the products that are on sale. * * @since 2.0 * @access public * @return array */ function wc_get_product_ids_on_sale() { global $wpdb; // Load from cache $product_ids_on_sale = get_transient( 'wc_products_onsale' ); // Valid cache found if ( false !== $product_ids_on_sale ) return $product_ids_on_sale; $on_sale_posts = $wpdb->get_results( " SELECT post.ID, post.post_parent FROM `$wpdb->posts` AS post LEFT JOIN `$wpdb->postmeta` AS meta ON post.ID = meta.post_id LEFT JOIN `$wpdb->postmeta` AS meta2 ON post.ID = meta2.post_id WHERE post.post_type IN ( 'product', 'product_variation' ) AND post.post_status = 'publish' AND meta.meta_key = '_sale_price' AND meta2.meta_key = '_price' AND CAST( meta.meta_value AS DECIMAL ) >= 0 AND CAST( meta.meta_value AS CHAR ) != '' AND CAST( meta.meta_value AS DECIMAL ) = CAST( meta2.meta_value AS DECIMAL ) GROUP BY post.ID; " ); $product_ids_on_sale = array_unique( array_map( 'absint', array_merge( wp_list_pluck( $on_sale_posts, 'ID' ), array_diff( wp_list_pluck( $on_sale_posts, 'post_parent' ), array( 0 ) ) ) ) ); set_transient( 'wc_products_onsale', $product_ids_on_sale, YEAR_IN_SECONDS ); return $product_ids_on_sale; } /** * Function that returns an array containing the IDs of the featured products. * * @since 2.1 * @access public * @return array */ function wc_get_featured_product_ids() { // Load from cache $featured_product_ids = get_transient( 'wc_featured_products' ); // Valid cache found if ( false !== $featured_product_ids ) return $featured_product_ids; $featured = get_posts( array( 'post_type' => array( 'product', 'product_variation' ), 'posts_per_page' => -1, 'post_status' => 'publish', 'meta_query' => array( array( 'key' => '_visibility', 'value' => array('catalog', 'visible'), 'compare' => 'IN' ), array( 'key' => '_featured', 'value' => 'yes' ) ), 'fields' => 'id=>parent' ) ); $product_ids = array_keys( $featured ); $parent_ids = array_values( $featured ); $featured_product_ids = array_unique( array_merge( $product_ids, $parent_ids ) ); set_transient( 'wc_featured_products', $featured_product_ids, YEAR_IN_SECONDS ); return $featured_product_ids; } /** * Filter to allow product_cat in the permalinks for products. * * @access public * @param string $permalink The existing permalink URL. * @param WP_Post $post * @return string */ function wc_product_post_type_link( $permalink, $post ) { // Abort if post is not a product if ( $post->post_type !== 'product' ) return $permalink; // Abort early if the placeholder rewrite tag isn't in the generated URL if ( false === strpos( $permalink, '%' ) ) return $permalink; // Get the custom taxonomy terms in use by this post $terms = get_the_terms( $post->ID, 'product_cat' ); if ( empty( $terms ) ) { // If no terms are assigned to this post, use a string instead (can't leave the placeholder there) $product_cat = _x( 'uncategorized', 'slug', 'woocommerce' ); } else { // Replace the placeholder rewrite tag with the first term's slug $first_term = array_shift( $terms ); $product_cat = $first_term->slug; } $find = array( '%year%', '%monthnum%', '%day%', '%hour%', '%minute%', '%second%', '%post_id%', '%category%', '%product_cat%' ); $replace = array( date_i18n( 'Y', strtotime( $post->post_date ) ), date_i18n( 'm', strtotime( $post->post_date ) ), date_i18n( 'd', strtotime( $post->post_date ) ), date_i18n( 'H', strtotime( $post->post_date ) ), date_i18n( 'i', strtotime( $post->post_date ) ), date_i18n( 's', strtotime( $post->post_date ) ), $post->ID, $product_cat, $product_cat ); $replace = array_map( 'sanitize_title', $replace ); $permalink = str_replace( $find, $replace, $permalink ); return $permalink; } add_filter( 'post_type_link', 'wc_product_post_type_link', 10, 2 ); /** * Get the placeholder image URL for products etc * * @access public * @return string */ function wc_placeholder_img_src() { return apply_filters( 'woocommerce_placeholder_img_src', WC()->plugin_url() . '/assets/images/placeholder.png' ); } /** * Get the placeholder image * * @access public * @return string */ function wc_placeholder_img( $size = 'shop_thumbnail' ) { $dimensions = wc_get_image_size( $size ); return apply_filters('woocommerce_placeholder_img', '' ); } /** * Variation Formatting * * Gets a formatted version of variation data or item meta * * @access public * @param array $variation * @param bool $flat (default: false) * @return string */ function wc_get_formatted_variation( $variation, $flat = false ) { $return = ''; if ( is_array( $variation ) ) { if ( ! $flat ) { $return = '