Created
March 4, 2020 08:44
-
-
Save leewillis77/6bdd0ea2ece1f289bb47ea9b5e2471aa to your computer and use it in GitHub Desktop.
Show how to modify google_product_category element in Google Product Feed
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
<?php | |
add_filter( 'woocommerce_gpf_elements_google', function ( $elements, $general_id, $specific_id ) { | |
// Customise/add $elements['google_product_category'] here. e.g. | |
// $elements['google_product_category'] = [ 'My actual category' ]; | |
return $elements; | |
}, 10, 3 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment