我在我的functions.php
add_filter(\'wp_insert_post_data\', \'ad_change_title\');
function ad_change_title($data)
{
if($data[\'post_type\'] != \'ad_listing\')
return $data;
if(!is_admin())
return $data;
global $post;
update_post_meta((int)$post->ID, \'cp_entitle_englishel\', (string)$_POST[\'qtrans_title_en\']);
return $data;
}
但是
update_post_meta
部分我已经检查了
post_id
,
cp_entitle_englishel
,
qtrans_title_en
值,并且它们是有效的。有什么建议吗?