Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created May 11, 2018 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leewillis77/42589c00917bca8cf685e320bf2f75d7 to your computer and use it in GitHub Desktop.
Save leewillis77/42589c00917bca8cf685e320bf2f75d7 to your computer and use it in GitHub Desktop.
Example of modifying feed description in Google Product Feed extension
<?php
function lw_woocommerce_gpf_feed_item_google( $feed_item, $product ) {
// Modify $feed_item->description here.
return $feed_item;
}
add_filter( 'woocommerce_gpf_feed_item_google', 'lw_woocommerce_gpf_feed_item_google', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment