Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Last active June 20, 2019 16:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leewillis77/44cb3317890470d96a316915f6476aa9 to your computer and use it in GitHub Desktop.
Save leewillis77/44cb3317890470d96a316915f6476aa9 to your computer and use it in GitHub Desktop.
Example of filtering title in WooCommerce Google Product Feed
<?php
function lw_woocommerce_gpf_title( $title, $product_id ) {
// Modify $title here as you want.
return $title;
}
add_filter( 'woocommerce_gpf_title', 'lw_woocommerce_gpf_title', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment