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

Stu

link|improve this question

60% accept rate
Double quotes fixed it, but anyone know why? update_post_meta("$page_id", "Test_Field", "$test_value"); – Stuart Jul 11 '11 at 10:43
how are you assigning $post_id? Just guessing - everything looks fine, frankly. – Bosworth99 Jul 12 '11 at 23:41
feedback

1 Answer

Your first example used $post_id and solution $page_id. Was that a typo?

link|improve this answer
yes a typo. But well spotted. – Stuart Aug 1 '11 at 14:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.