Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created March 4, 2020 08:44
Show Gist options
  • Save leewillis77/6bdd0ea2ece1f289bb47ea9b5e2471aa to your computer and use it in GitHub Desktop.
Save leewillis77/6bdd0ea2ece1f289bb47ea9b5e2471aa to your computer and use it in GitHub Desktop.
Show how to modify google_product_category element in Google Product Feed
<?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