Created
August 28, 2013 17:49
-
-
Save eljamez/6369031 to your computer and use it in GitHub Desktop.
Woocommerce, get the product's attribute title from attribute slug
This file contains 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
// just pass in the attribute and the attribute slug | |
// and the return value is the attribute's name | |
// example : (assuming attribute size has the option of "Extra Small" withe the slug of "extra-small") | |
// echo attribute_slug_to_title('attribute_pa_size', 'extra-small'); | |
// returns | |
// "Extra Small" | |
// code reworked from woocommerce/classes/class-wc-cart.php | |
// attribute slug to title | |
if ( ! function_exists( 'attribute_slug_to_title' ) ) { | |
function attribute_slug_to_title( $attribute ,$slug ) { | |
global $woocommerce; | |
if ( taxonomy_exists( esc_attr( str_replace( 'attribute_', '', $attribute ) ) ) ) { | |
$term = get_term_by( 'slug', $slug, esc_attr( str_replace( 'attribute_', '', $attribute ) ) ); | |
if ( ! is_wp_error( $term ) && $term->name ) | |
$value = $term->name; | |
} else { | |
$value = apply_filters( 'woocommerce_variation_option_name', $value ); | |
} | |
return $value; | |
} | |
} |
Thank you, I used your code, your boy is still killing it and works perfectly
$value = apply_filters( 'woocommerce_variation_option_name', $value );
$value will be undefined.
$value = apply_filters( 'woocommerce_variation_option_name', $value );
$value will be undefined.
You are correct. Instead you should use $slug:
$value = apply_filters( 'woocommerce_variation_option_name', $slug );
nice :D
How to get ID from a attribute's slug?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
merci beaucoup :-)