Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created February 25, 2019 09:38
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/b44f85f47cdfb5fb78756df2c1d7c3a4 to your computer and use it in GitHub Desktop.
Save leewillis77/b44f85f47cdfb5fb78756df2c1d7c3a4 to your computer and use it in GitHub Desktop.
Example of modifying image links sent in Google Product Feed
<?php
add_filter( 'woocommerce_gpf_feed_item_google', function( $feed_item, $product ) {
// Modify $feed_item->image_link and/or $feed_item->additional_images here.
return $feed_item;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment