corsonr
7/18/2014 - 9:42 AM

WooCommerce: use YOAST SEO product titles in Google Feed integration

WooCommerce: use YOAST SEO product titles in Google Feed integration

<?php
function lw_woocommerce_gpf_title($title, $product_id) {
	return get_post_meta( $product_id, '_yoast_wpseo_title', true );
}
add_filter( 'woocommerce_gpf_title', 'lw_woocommerce_gpf_title', 10, 2);