将帖子保存在管理员中时如何更新自定义帖子自定义字段值?
我曾尝试在 misc.php 中将其用于管理部分:
add_action('pre_post_update', 'do_something_with_a_post');
function do_something_with_a_post($id) {
global $post;
update_post_meta($id, 'ct_Course_Dur_text_d19c', 'test12');
)
但它不起作用。