Skip to content

Instantly share code, notes, and snippets.

@sukhikh18
Last active September 23, 2020 13:02
Show Gist options
  • Save sukhikh18/71b72230c0a2a0482f2199cc0cb2700a to your computer and use it in GitHub Desktop.
Save sukhikh18/71b72230c0a2a0482f2199cc0cb2700a to your computer and use it in GitHub Desktop.
#Raw
<?php
if( is_singular( array('product') ) ) {
add_filter( 'wpseo_title', function($old) {
$price = get_post_meta( get_the_ID(), '_regular_price', true);
return $price;
}, 100 );
add_filter( 'wpseo_metadesc', function($old) {
$price = get_post_meta( get_the_ID(), '_regular_price', true);
return $price;
}, 100 );
add_filter( 'wpseo_metakey', function($old) {
$price = get_post_meta( get_the_ID(), '_regular_price', true);
return $price;
}, 100 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment