这有点奇怪,我正在使用“update_post_meta”来更新 Wordpress 中的自定义字段。当我运行 update_post_meta($post_id, 'Test_Field', 'Test Value'); 自定义字段更新没有问题但是当我使用它不更新的字符串值时:
$test_value = "Test";
echo $test_value; // No problem here
echo $post_id; // No problem here
update_post_meta($post_id, 'Test_Field', $test_value);
非常感谢您的帮助
斯图