插入立柱前要使用的右挂钩是wp_insert_post_data
function tr_insert_post($data){
$post [\'post_title\'] = "the title: ".$post [\'post_title\'];
return $post;
}
add_action(\'wp_insert_post_data\', \'tr_insert_post\',1,2);
但我认为实现这一点的更好方法是将帖子保存为原样,然后使用类似的过滤器进行翻译
the_content
通过这种方式,您可以使用与发布内容相同的语言保存帖子,并且可以使用相同的语言轻松编辑帖子。