woocommerce/includes/wc-term-functions.php

692 lines
22 KiB
PHP
Raw Normal View History

2013-08-09 16:11:15 +00:00
<?php
/**
2015-11-03 13:53:50 +00:00
* WooCommerce Terms
2013-08-09 16:11:15 +00:00
*
* Functions for handling terms/term meta.
*
* @author WooThemes
* @category Core
* @package WooCommerce/Functions
* @version 2.1.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
2013-08-09 16:11:15 +00:00
/**
2014-02-07 11:43:34 +00:00
* Wrapper for wp_get_post_terms which supports ordering by parent.
*
2015-11-03 13:31:20 +00:00
* NOTE: At this point in time, ordering by menu_order for example isn't possible with this function. wp_get_post_terms has no.
* filters which we can utilise to modify it's query. https://core.trac.wordpress.org/ticket/19094.
*
* @param int $product_id
* @param string $taxonomy
* @param array $args
* @return array
*/
function wc_get_product_terms( $product_id, $taxonomy, $args = array() ) {
if ( ! taxonomy_exists( $taxonomy ) ) {
return array();
}
if ( empty( $args['orderby'] ) && taxonomy_is_product_attribute( $taxonomy ) ) {
$args['orderby'] = wc_attribute_orderby( $taxonomy );
}
// Support ordering by parent
if ( ! empty( $args['orderby'] ) && in_array( $args['orderby'], array( 'name_num', 'parent' ) ) ) {
$fields = isset( $args['fields'] ) ? $args['fields'] : 'all';
$orderby = $args['orderby'];
// Unset for wp_get_post_terms
unset( $args['orderby'] );
unset( $args['fields'] );
$terms = wp_get_post_terms( $product_id, $taxonomy, $args );
switch ( $orderby ) {
case 'name_num' :
usort( $terms, '_wc_get_product_terms_name_num_usort_callback' );
break;
case 'parent' :
usort( $terms, '_wc_get_product_terms_parent_usort_callback' );
break;
}
switch ( $fields ) {
case 'names' :
$terms = wp_list_pluck( $terms, 'name' );
break;
case 'ids' :
$terms = wp_list_pluck( $terms, 'term_id' );
break;
case 'slugs' :
$terms = wp_list_pluck( $terms, 'slug' );
break;
}
} elseif ( ! empty( $args['orderby'] ) && $args['orderby'] === 'menu_order' ) {
// wp_get_post_terms doesn't let us use custom sort order
$args['include'] = wp_get_post_terms( $product_id, $taxonomy, array( 'fields' => 'ids' ) );
if ( empty( $args['include'] ) ) {
$terms = array();
} else {
// This isn't needed for get_terms
unset( $args['orderby'] );
// Set args for get_terms
$args['menu_order'] = isset( $args['order'] ) ? $args['order'] : 'ASC';
$args['hide_empty'] = isset( $args['hide_empty'] ) ? $args['hide_empty'] : 0;
$args['fields'] = isset( $args['fields'] ) ? $args['fields'] : 'names';
// Ensure slugs is valid for get_terms - slugs isn't supported
$args['fields'] = $args['fields'] === 'slugs' ? 'id=>slug' : $args['fields'];
$terms = get_terms( $taxonomy, $args );
}
} else {
$terms = wp_get_post_terms( $product_id, $taxonomy, $args );
}
return apply_filters( 'woocommerce_get_product_terms' , $terms, $product_id, $taxonomy, $args );
}
/**
2015-11-03 13:31:20 +00:00
* Sort by name (numeric).
* @param WP_POST object $a
* @param WP_POST object $b
* @return int
*/
function _wc_get_product_terms_name_num_usort_callback( $a, $b ) {
if ( $a->name + 0 === $b->name + 0 ) {
return 0;
}
return ( $a->name + 0 < $b->name + 0 ) ? -1 : 1;
}
/**
2015-11-03 13:31:20 +00:00
* Sort by parent.
* @param WP_POST object $a
* @param WP_POST object $b
* @return int
*/
function _wc_get_product_terms_parent_usort_callback( $a, $b ) {
if ( $a->parent === $b->parent ) {
return 0;
}
return ( $a->parent < $b->parent ) ? 1 : -1;
}
2013-08-09 16:11:15 +00:00
/**
2015-11-03 13:31:20 +00:00
* WooCommerce Dropdown categories.
2013-08-09 16:11:15 +00:00
*
2015-11-03 13:31:20 +00:00
* Stuck with this until a fix for http://core.trac.wordpress.org/ticket/13258.
* We use a custom walker, just like WordPress does.
2013-08-09 16:11:15 +00:00
*
2014-09-07 23:37:55 +00:00
* @param int $deprecated_show_uncategorized (default: 1)
2013-08-09 16:11:15 +00:00
* @return string
*/
function wc_product_dropdown_categories( $args = array(), $deprecated_hierarchical = 1, $deprecated_show_uncategorized = 1, $deprecated_orderby = '' ) {
global $wp_query;
2013-08-09 16:11:15 +00:00
if ( ! is_array( $args ) ) {
_deprecated_argument( 'wc_product_dropdown_categories()', '2.1', 'show_counts, hierarchical, show_uncategorized and orderby arguments are invalid - pass a single array of values instead.' );
2015-08-25 09:48:27 +00:00
$args['show_count'] = $args;
$args['hierarchical'] = $deprecated_hierarchical;
$args['show_uncategorized'] = $deprecated_show_uncategorized;
$args['orderby'] = $deprecated_orderby;
}
$current_product_cat = isset( $wp_query->query['product_cat'] ) ? $wp_query->query['product_cat'] : '';
$defaults = array(
'pad_counts' => 1,
2015-08-25 09:48:27 +00:00
'show_count' => 1,
'hierarchical' => 1,
'hide_empty' => 1,
'show_uncategorized' => 1,
'orderby' => 'name',
'selected' => $current_product_cat,
'menu_order' => false
);
$args = wp_parse_args( $args, $defaults );
2013-08-09 16:11:15 +00:00
if ( $args['orderby'] == 'order' ) {
$args['menu_order'] = 'asc';
$args['orderby'] = 'name';
}
2013-08-09 16:11:15 +00:00
$terms = get_terms( 'product_cat', apply_filters( 'wc_product_dropdown_categories_get_terms_args', $args ) );
2013-08-09 16:11:15 +00:00
if ( ! $terms ) {
2013-08-09 16:11:15 +00:00
return;
}
2013-08-09 16:11:15 +00:00
$output = "<select name='product_cat' class='dropdown_product_cat'>";
$output .= '<option value="" ' . selected( $current_product_cat, '', false ) . '>' . __( 'Select a category', 'woocommerce' ) . '</option>';
$output .= wc_walk_category_dropdown_tree( $terms, 0, $args );
if ( $args['show_uncategorized'] ) {
$output .= '<option value="0" ' . selected( $current_product_cat, '0', false ) . '>' . __( 'Uncategorized', 'woocommerce' ) . '</option>';
}
$output .= "</select>";
2013-08-09 16:11:15 +00:00
echo $output;
}
/**
* Walk the Product Categories.
*
2013-11-27 18:20:31 +00:00
* @return mixed
2013-08-09 16:11:15 +00:00
*/
function wc_walk_category_dropdown_tree() {
if ( ! class_exists( 'WC_Product_Cat_Dropdown_Walker' ) ) {
2013-11-25 14:01:32 +00:00
include_once( WC()->plugin_path() . '/includes/walkers/class-product-cat-dropdown-walker.php' );
}
2013-08-09 16:11:15 +00:00
$args = func_get_args();
// the user's options are the third parameter
if ( empty( $args[2]['walker']) || !is_a($args[2]['walker'], 'Walker' ) ) {
2013-08-09 16:11:15 +00:00
$walker = new WC_Product_Cat_Dropdown_Walker;
} else {
2013-08-09 16:11:15 +00:00
$walker = $args[2]['walker'];
}
2013-08-09 16:11:15 +00:00
return call_user_func_array( array( &$walker, 'walk' ), $args );
2013-08-09 16:11:15 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* WooCommerce Term/Order item Meta API - set table name.
2013-08-09 16:11:15 +00:00
*/
function wc_taxonomy_metadata_wpdbfix() {
2013-08-09 16:11:15 +00:00
global $wpdb;
$termmeta_name = 'woocommerce_termmeta';
$itemmeta_name = 'woocommerce_order_itemmeta';
$wpdb->woocommerce_termmeta = $wpdb->prefix . $termmeta_name;
$wpdb->order_itemmeta = $wpdb->prefix . $itemmeta_name;
$wpdb->tables[] = 'woocommerce_termmeta';
2013-09-26 13:59:53 +00:00
$wpdb->tables[] = 'woocommerce_order_itemmeta';
2013-08-09 16:11:15 +00:00
}
add_action( 'init', 'wc_taxonomy_metadata_wpdbfix', 0 );
add_action( 'switch_blog', 'wc_taxonomy_metadata_wpdbfix', 0 );
2013-08-09 16:11:15 +00:00
2015-03-05 11:27:58 +00:00
/**
* When a term is split, ensure meta data maintained.
* @param int $old_term_id
* @param int $new_term_id
* @param string $term_taxonomy_id
* @param string $taxonomy
*/
function wc_taxonomy_metadata_update_content_for_split_terms( $old_term_id, $new_term_id, $term_taxonomy_id, $taxonomy ) {
global $wpdb;
if ( get_option( 'db_version' ) < 34370 ) {
if ( 'product_cat' === $taxonomy || taxonomy_is_product_attribute( $taxonomy ) ) {
$old_meta_data = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}woocommerce_termmeta WHERE woocommerce_term_id = %d;", $old_term_id ) );
// Copy across to split term
if ( $old_meta_data ) {
foreach ( $old_meta_data as $meta_data ) {
$wpdb->insert(
"{$wpdb->prefix}woocommerce_termmeta",
array(
'woocommerce_term_id' => $new_term_id,
'meta_key' => $meta_data->meta_key,
'meta_value' => $meta_data->meta_value
)
);
}
2015-03-05 11:27:58 +00:00
}
}
}
}
add_action( 'split_shared_term', 'wc_taxonomy_metadata_update_content_for_split_terms', 10, 4 );
2013-08-09 16:11:15 +00:00
/**
* Migrate data from WC term meta to WP term meta
*
* When the database is updated to support term meta, migrate WC term meta data across.
* We do this when the new version is >= 34370, and the old version is < 34370 (34370 is when term meta table was added).
*
* @param string $wp_db_version The new $wp_db_version.
* @param string $wp_current_db_version The old (current) $wp_db_version.
*/
function wc_taxonomy_metadata_migrate_data( $wp_db_version, $wp_current_db_version ) {
if ( $wp_db_version >= 34370 && $wp_current_db_version < 34370 ) {
global $wpdb;
if ( $wpdb->query( "INSERT INTO {$wpdb->termmeta} ( term_id, meta_key, meta_value ) SELECT woocommerce_term_id, meta_key, meta_value FROM {$wpdb->prefix}woocommerce_termmeta;" ) ) {
$wpdb->query( "DROP TABLE IF EXISTS {$wpdb->prefix}woocommerce_termmeta" );
}
}
}
2015-11-06 15:35:25 +00:00
add_action( 'wp_upgrade', 'wc_taxonomy_metadata_migrate_data', 10, 2 );
/**
* WooCommerce Term Meta API
*
* WC tables for storing term meta are @deprecated from WordPress 4.4 since 4.4 has its own table.
* This function serves as a wrapper, using the new table if present, or falling back to the WC table.
*
* @todo These functions should be deprecated with notices in a future WC version, allowing users a chance to upgrade WordPress.
2013-08-09 16:11:15 +00:00
*
* @param mixed $term_id
2014-09-07 23:37:55 +00:00
* @param string $meta_key
2013-08-09 16:11:15 +00:00
* @param mixed $meta_value
* @param string $prev_value (default: '')
* @return bool
*/
function update_woocommerce_term_meta( $term_id, $meta_key, $meta_value, $prev_value = '' ) {
// If term meta table is not installed (pre-wp-4.4), use WC tables
if ( get_option( 'db_version' ) < 34370 || ! function_exists( 'update_term_meta' ) ) {
return update_metadata( 'woocommerce_term', $term_id, $meta_key, $meta_value, $prev_value );
} else {
return update_term_meta( $term_id, $meta_key, $meta_value, $prev_value );
}
2013-08-09 16:11:15 +00:00
}
/**
* WooCommerce Term Meta API
*
* WC tables for storing term meta are @deprecated from WordPress 4.4 since 4.4 has its own table.
* This function serves as a wrapper, using the new table if present, or falling back to the WC table.
*
* @todo These functions should be deprecated with notices in a future WC version, allowing users a chance to upgrade WordPress.
2013-08-09 16:11:15 +00:00
*
* @param mixed $term_id
* @param mixed $meta_key
* @param mixed $meta_value
* @param bool $unique (default: false)
* @return bool
*/
function add_woocommerce_term_meta( $term_id, $meta_key, $meta_value, $unique = false ){
// If term meta table is not installed (pre-wp-4.4), use WC tables
if ( get_option( 'db_version' ) < 34370 || ! function_exists( 'add_term_meta' ) ) {
return add_metadata( 'woocommerce_term', $term_id, $meta_key, $meta_value, $unique );
} else {
return add_term_meta( $term_id, $meta_key, $meta_value, $unique );
}
2013-08-09 16:11:15 +00:00
}
/**
* WooCommerce Term Meta API
*
* WC tables for storing term meta are @deprecated from WordPress 4.4 since 4.4 has its own table.
* This function serves as a wrapper, using the new table if present, or falling back to the WC table.
*
* @todo These functions should be deprecated with notices in a future WC version, allowing users a chance to upgrade WordPress.
2013-08-09 16:11:15 +00:00
*
* @param mixed $term_id
* @param mixed $meta_key
* @param string $meta_value (default: '')
* @param bool $deprecated (default: false)
2013-08-09 16:11:15 +00:00
* @return bool
*/
function delete_woocommerce_term_meta( $term_id, $meta_key, $meta_value = '', $deprecated = false ) {
// If term meta table is not installed (pre-wp-4.4), use WC tables
if ( get_option( 'db_version' ) < 34370 || ! function_exists( 'delete_term_meta' ) ) {
return delete_metadata( 'woocommerce_term', $term_id, $meta_key, $meta_value );
} else {
return delete_term_meta( $term_id, $meta_key, $meta_value );
}
2013-08-09 16:11:15 +00:00
}
/**
* WooCommerce Term Meta API
*
* WC tables for storing term meta are @deprecated from WordPress 4.4 since 4.4 has its own table.
* This function serves as a wrapper, using the new table if present, or falling back to the WC table.
*
* @todo These functions should be deprecated with notices in a future WC version, allowing users a chance to upgrade WordPress.
2013-08-09 16:11:15 +00:00
*
* @param mixed $term_id
2014-09-07 23:37:55 +00:00
* @param string $key
2013-08-09 16:11:15 +00:00
* @param bool $single (default: true)
* @return mixed
*/
function get_woocommerce_term_meta( $term_id, $key, $single = true ) {
// If term meta table is not installed (pre-wp-4.4), use WC tables
if ( get_option( 'db_version' ) < 34370 || ! function_exists( 'get_term_meta' ) ) {
return get_metadata( 'woocommerce_term', $term_id, $key, $single );
} else {
return get_term_meta( $term_id, $key, $single );
}
2013-08-09 16:11:15 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Move a term before the a given element of its hierarchy level.
2013-08-09 16:11:15 +00:00
*
* @param int $the_term
* @param int $next_id the id of the next sibling element in save hierarchy level
* @param string $taxonomy
* @param int $index (default: 0)
* @param mixed $terms (default: null)
* @return int
*/
function wc_reorder_terms( $the_term, $next_id, $taxonomy, $index = 0, $terms = null ) {
2013-08-09 16:11:15 +00:00
if ( ! $terms ) $terms = get_terms( $taxonomy, 'menu_order=ASC&hide_empty=0&parent=0' );
if ( empty( $terms ) ) return $index;
2013-08-09 16:11:15 +00:00
$id = $the_term->term_id;
$term_in_level = false; // flag: is our term to order in this level of terms
foreach ( $terms as $term ) {
2013-08-09 16:11:15 +00:00
if ( $term->term_id == $id ) { // our term to order, we skip
2013-08-09 16:11:15 +00:00
$term_in_level = true;
continue; // our term to order, we skip
}
// the nextid of our term to order, lets move our term here
if (null !== $next_id && $term->term_id == $next_id) {
$index ++;
$index = wc_set_term_order($id, $index, $taxonomy, true);
2013-08-09 16:11:15 +00:00
}
// set order
$index ++;
$index = wc_set_term_order($term->term_id, $index, $taxonomy);
2013-08-09 16:11:15 +00:00
// if that term has children we walk through them
$children = get_terms($taxonomy, "parent={$term->term_id}&menu_order=ASC&hide_empty=0");
if ( ! empty( $children ) ) {
2013-12-05 16:07:44 +00:00
$index = wc_reorder_terms( $the_term, $next_id, $taxonomy, $index, $children );
2013-08-09 16:11:15 +00:00
}
}
// no nextid meaning our term is in last position
if ( $term_in_level && null === $next_id ) {
$index = wc_set_term_order( $id, $index + 1, $taxonomy, true );
}
2013-08-09 16:11:15 +00:00
return $index;
}
/**
2015-11-03 13:31:20 +00:00
* Set the sort order of a term.
2013-08-09 16:11:15 +00:00
*
* @param int $term_id
* @param int $index
* @param string $taxonomy
* @param bool $recursive (default: false)
* @return int
*/
function wc_set_term_order( $term_id, $index, $taxonomy, $recursive = false ) {
2013-08-09 16:11:15 +00:00
$term_id = (int) $term_id;
$index = (int) $index;
// Meta name
if ( taxonomy_is_product_attribute( $taxonomy ) )
$meta_name = 'order_' . esc_attr( $taxonomy );
else
$meta_name = 'order';
update_woocommerce_term_meta( $term_id, $meta_name, $index );
if( ! $recursive ) return $index;
$children = get_terms($taxonomy, "parent=$term_id&menu_order=ASC&hide_empty=0");
foreach ( $children as $term ) {
$index ++;
$index = wc_set_term_order($term->term_id, $index, $taxonomy, true);
2013-08-09 16:11:15 +00:00
}
clean_term_cache( $term_id, $taxonomy );
return $index;
}
/**
2015-11-03 13:31:20 +00:00
* Add term ordering to get_terms.
2013-08-09 16:11:15 +00:00
*
* It enables the support a 'menu_order' parameter to get_terms for the product_cat taxonomy.
2015-11-03 13:31:20 +00:00
* By default it is 'ASC'. It accepts 'DESC' too.
2013-08-09 16:11:15 +00:00
*
2015-11-03 13:31:20 +00:00
* To disable it, set it ot false (or 0).
2013-08-09 16:11:15 +00:00
*
* @param array $clauses
* @param array $taxonomies
* @param array $args
* @return array
*/
function wc_terms_clauses( $clauses, $taxonomies, $args ) {
global $wpdb;
2013-08-09 16:11:15 +00:00
// No sorting when menu_order is false
if ( isset( $args['menu_order'] ) && $args['menu_order'] == false ) {
return $clauses;
}
2013-08-09 16:11:15 +00:00
// No sorting when orderby is non default
if ( isset( $args['orderby'] ) && $args['orderby'] != 'name' ) {
return $clauses;
}
2013-08-09 16:11:15 +00:00
// No sorting in admin when sorting by a column
if ( is_admin() && isset( $_GET['orderby'] ) ) {
return $clauses;
}
2013-08-09 16:11:15 +00:00
// wordpress should give us the taxonomies asked when calling the get_terms function. Only apply to categories and pa_ attributes
$found = false;
foreach ( (array) $taxonomies as $taxonomy ) {
if ( taxonomy_is_product_attribute( $taxonomy ) || in_array( $taxonomy, apply_filters( 'woocommerce_sortable_taxonomies', array( 'product_cat' ) ) ) ) {
$found = true;
break;
}
}
if ( ! $found ) {
return $clauses;
}
2013-08-09 16:11:15 +00:00
// Meta name
if ( ! empty( $taxonomies[0] ) && taxonomy_is_product_attribute( $taxonomies[0] ) ) {
$meta_name = 'order_' . esc_attr( $taxonomies[0] );
2013-08-09 16:11:15 +00:00
} else {
$meta_name = 'order';
}
// query fields
if ( strpos( 'COUNT(*)', $clauses['fields'] ) === false ) {
$clauses['fields'] .= ', tm.* ';
}
2013-08-09 16:11:15 +00:00
// query join
if ( get_option( 'db_version' ) < 34370 ) {
$clauses['join'] .= " LEFT JOIN {$wpdb->woocommerce_termmeta} AS tm ON (t.term_id = tm.woocommerce_term_id AND tm.meta_key = '" . esc_sql( $meta_name ) . "') ";
} else {
$clauses['join'] .= " LEFT JOIN {$wpdb->termmeta} AS tm ON (t.term_id = tm.term_id AND tm.meta_key = '" . esc_sql( $meta_name ) . "') ";
}
2013-08-09 16:11:15 +00:00
// default to ASC
if ( ! isset( $args['menu_order'] ) || ! in_array( strtoupper($args['menu_order']), array('ASC', 'DESC')) ) {
$args['menu_order'] = 'ASC';
}
2013-08-09 16:11:15 +00:00
$order = "ORDER BY tm.meta_value+0 " . esc_sql( $args['menu_order'] );
2013-08-09 16:11:15 +00:00
if ( $clauses['orderby'] ) {
$clauses['orderby'] = str_replace( 'ORDER BY', esc_sql( $order ) . ',', $clauses['orderby'] );
} else {
2013-08-09 16:11:15 +00:00
$clauses['orderby'] = $order;
}
2013-08-09 16:11:15 +00:00
return $clauses;
}
add_filter( 'terms_clauses', 'wc_terms_clauses', 10, 3 );
2013-08-09 16:11:15 +00:00
/**
* Function for recounting product terms, ignoring hidden products.
2015-07-16 19:55:48 +00:00
*
* @param array $terms
* @param string $taxonomy
* @param boolean $callback
* @param boolean $terms_are_term_taxonomy_ids
2013-08-09 16:11:15 +00:00
*/
function _wc_term_recount( $terms, $taxonomy, $callback = true, $terms_are_term_taxonomy_ids = true ) {
2013-08-09 16:11:15 +00:00
global $wpdb;
// Standard callback
if ( $callback ) {
2013-08-09 16:11:15 +00:00
_update_post_term_count( $terms, $taxonomy );
}
2013-08-09 16:11:15 +00:00
// Stock query
if ( get_option( 'woocommerce_hide_out_of_stock_items' ) == 'yes' ) {
$stock_join = "LEFT JOIN {$wpdb->postmeta} AS meta_stock ON posts.ID = meta_stock.post_id";
$stock_query = "
2013-10-22 15:20:40 +00:00
AND meta_stock.meta_key = '_stock_status'
AND meta_stock.meta_value = 'instock'
";
2013-08-09 16:11:15 +00:00
} else {
$stock_query = $stock_join = '';
}
// Main query
2013-10-22 15:20:40 +00:00
$count_query = "
2013-08-09 16:11:15 +00:00
SELECT COUNT( DISTINCT posts.ID ) FROM {$wpdb->posts} as posts
LEFT JOIN {$wpdb->postmeta} AS meta_visibility ON posts.ID = meta_visibility.post_id
LEFT JOIN {$wpdb->term_relationships} AS rel ON posts.ID=rel.object_ID
LEFT JOIN {$wpdb->term_taxonomy} AS tax USING( term_taxonomy_id )
LEFT JOIN {$wpdb->terms} AS term USING( term_id )
LEFT JOIN {$wpdb->postmeta} AS postmeta ON posts.ID = postmeta.post_id
2013-08-09 16:11:15 +00:00
$stock_join
2013-10-22 15:20:40 +00:00
WHERE post_status = 'publish'
AND post_type = 'product'
AND meta_visibility.meta_key = '_visibility'
AND meta_visibility.meta_value IN ( 'visible', 'catalog' )
2013-08-09 16:11:15 +00:00
$stock_query
2013-10-22 15:20:40 +00:00
";
2013-08-09 16:11:15 +00:00
// Pre-process term taxonomy ids
if ( ! $terms_are_term_taxonomy_ids ) {
// We passed in an array of TERMS in format id=>parent
$terms = array_filter( (array) array_keys( $terms ) );
} else {
// If we have term taxonomy IDs we need to get the term ID
$term_taxonomy_ids = $terms;
$terms = array();
foreach ( $term_taxonomy_ids as $term_taxonomy_id ) {
$term = get_term_by( 'term_taxonomy_id', $term_taxonomy_id, $taxonomy->name );
$terms[] = $term->term_id;
}
}
2013-08-09 16:11:15 +00:00
// Exit if we have no terms to count
if ( ! $terms ) {
return;
}
2013-08-09 16:11:15 +00:00
2013-10-22 15:20:40 +00:00
// Ancestors need counting
if ( is_taxonomy_hierarchical( $taxonomy->name ) ) {
2013-10-22 15:20:40 +00:00
foreach ( $terms as $term_id ) {
2013-10-29 11:29:17 +00:00
$terms = array_merge( $terms, get_ancestors( $term_id, $taxonomy->name ) );
2013-08-09 16:11:15 +00:00
}
}
// Unique terms only
2013-10-22 15:20:40 +00:00
$terms = array_unique( $terms );
2013-08-09 16:11:15 +00:00
2013-10-22 15:20:40 +00:00
// Count the terms
foreach ( $terms as $term_id ) {
$terms_to_count = array( absint( $term_id ) );
2013-08-09 16:11:15 +00:00
if ( is_taxonomy_hierarchical( $taxonomy->name ) ) {
// We need to get the $term's hierarchy so we can count its children too
if ( ( $children = get_term_children( $term_id, $taxonomy->name ) ) && ! is_wp_error( $children ) ) {
$terms_to_count = array_unique( array_map( 'absint', array_merge( $terms_to_count, $children ) ) );
2013-10-22 15:20:40 +00:00
}
}
2013-08-09 16:11:15 +00:00
// Generate term query
$term_query = 'AND term_id IN ( ' . implode( ',', $terms_to_count ) . ' )';
2013-08-09 16:11:15 +00:00
// Get the count
$count = $wpdb->get_var( $count_query . $term_query );
2013-08-09 16:11:15 +00:00
// Update the count
update_woocommerce_term_meta( $term_id, 'product_count_' . $taxonomy->name, absint( $count ) );
2013-08-09 16:11:15 +00:00
}
delete_transient( 'wc_term_counts' );
2013-08-09 16:11:15 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Recount terms after the stock amount changes.
2015-07-16 19:55:48 +00:00
*
* @param int $product_id
2013-08-09 16:11:15 +00:00
*/
function wc_recount_after_stock_change( $product_id ) {
if ( get_option( 'woocommerce_hide_out_of_stock_items' ) != 'yes' )
2013-10-22 15:20:40 +00:00
return;
2013-08-09 16:11:15 +00:00
$product_terms = get_the_terms( $product_id, 'product_cat' );
if ( $product_terms ) {
2014-11-19 19:01:06 +00:00
$product_cats = array();
foreach ( $product_terms as $term ) {
2013-08-09 16:11:15 +00:00
$product_cats[ $term->term_id ] = $term->parent;
2014-11-19 19:01:06 +00:00
}
2013-08-09 16:11:15 +00:00
_wc_term_recount( $product_cats, get_taxonomy( 'product_cat' ), false, false );
2013-08-09 16:11:15 +00:00
}
$product_terms = get_the_terms( $product_id, 'product_tag' );
if ( $product_terms ) {
2014-11-19 19:01:06 +00:00
$product_tags = array();
foreach ( $product_terms as $term ) {
2013-08-09 16:11:15 +00:00
$product_tags[ $term->term_id ] = $term->parent;
2014-11-19 19:01:06 +00:00
}
2013-08-09 16:11:15 +00:00
_wc_term_recount( $product_tags, get_taxonomy( 'product_tag' ), false, false );
2013-08-09 16:11:15 +00:00
}
}
add_action( 'woocommerce_product_set_stock_status', 'wc_recount_after_stock_change' );
2013-08-09 16:11:15 +00:00
/**
2015-11-03 13:31:20 +00:00
* Overrides the original term count for product categories and tags with the product count.
2013-08-09 16:11:15 +00:00
* that takes catalog visibility into account.
*
* @param array $terms
2014-11-20 00:43:09 +00:00
* @param string|array $taxonomies
2013-08-09 16:11:15 +00:00
* @return array
*/
2014-11-20 00:43:09 +00:00
function wc_change_term_counts( $terms, $taxonomies ) {
if ( is_admin() || is_ajax() ) {
2013-08-09 16:11:15 +00:00
return $terms;
}
2013-08-09 16:11:15 +00:00
if ( ! isset( $taxonomies[0] ) || ! in_array( $taxonomies[0], apply_filters( 'woocommerce_change_term_counts', array( 'product_cat', 'product_tag' ) ) ) ) {
2013-08-09 16:11:15 +00:00
return $terms;
}
2013-08-09 16:11:15 +00:00
$term_counts = $o_term_counts = get_transient( 'wc_term_counts' );
foreach ( $terms as &$term ) {
if ( is_object( $term ) ) {
$term_counts[ $term->term_id ] = isset( $term_counts[ $term->term_id ] ) ? $term_counts[ $term->term_id ] : get_woocommerce_term_meta( $term->term_id, 'product_count_' . $taxonomies[0] , true );
2013-08-09 16:11:15 +00:00
if ( $term_counts[ $term->term_id ] !== '' ) {
$term->count = absint( $term_counts[ $term->term_id ] );
}
}
2013-08-09 16:11:15 +00:00
}
// Update transient
if ( $term_counts != $o_term_counts ) {
set_transient( 'wc_term_counts', $term_counts, DAY_IN_SECONDS * 30 );
}
2013-08-09 16:11:15 +00:00
return $terms;
}
2014-11-20 00:43:09 +00:00
add_filter( 'get_terms', 'wc_change_term_counts', 10, 2 );