1 year ago
#343643
Danilo Credo Lu-ang II
Unable to update Focus keyphrase in woocommerce product category using update_post_meta
I am trying to update yoast focus keyphrase using the code below.
add_action( 'created_product_cat', 'ts_custom_woocommerce_placeholder', 10, 2 );
function ts_custom_woocommerce_placeholder( $post_id ) {
$productname = 'test prduct'
update_post_meta($post_id, '_yoast_wpseo_focuskw', $productname.' ecm');
return true;
}
What am I missing here?
php
wordpress
woocommerce
yoast
update-post-meta
0 Answers
Your Answer