WordPress update_post_meta does not update dynamic values

This is a little strange, I am using “update_post_meta” to update the custom fields in WordPress. When I run update_post_meta($post_id, ‘Test_Field’, ‘Test Value’); the custom field updates without a problem BUT when I use a string value it does not update:

$test_value = "Test";
 echo $test_value; // No problem here
 echo $post_id; // No problem here
 update_post_meta($post_id, 'Test_Field', $test_value);

Thanks very much in advance for your help

Read More

Stu

Related posts

Leave a Reply

3 comments