Created
September 26, 2019 13:57
-
-
Save hirejordansmith/5b5e1e0557f803471621e930bac7a203 to your computer and use it in GitHub Desktop.
Add support for ACF custom fields to WooCommerce Attributes
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
<?php | |
// Adds a custom rule type. | |
add_filter( 'acf/location/rule_types', function( $choices ){ | |
$choices[ __("Other",'acf') ]['wc_prod_attr'] = 'WC Product Attribute'; | |
return $choices; | |
} ); | |
// Adds custom rule values. | |
add_filter( 'acf/location/rule_values/wc_prod_attr', function( $choices ){ | |
foreach ( wc_get_attribute_taxonomies() as $attr ) { | |
$pa_name = wc_attribute_taxonomy_name( $attr->attribute_name ); | |
$choices[ $pa_name ] = $attr->attribute_label; | |
} | |
return $choices; | |
} ); | |
// Matching the custom rule. | |
add_filter( 'acf/location/rule_match/wc_prod_attr', function( $match, $rule, $options ){ | |
if ( isset( $options['taxonomy'] ) ) { | |
if ( '==' === $rule['operator'] ) { | |
$match = $rule['value'] === $options['taxonomy']; | |
} elseif ( '!=' === $rule['operator'] ) { | |
$match = $rule['value'] !== $options['taxonomy']; | |
} | |
} | |
return $match; | |
}, 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment