我的插件中有一个附加到save\\u post的函数,在该函数中,我试图在保存post\\u内容之前对其进行过滤。然而,一旦内容被保存,它实际上就不会被更改。请参见下面的设置$post->post\\u content=“test”;
add_action(\'save_post\', \'save_post_filter\',10,2);
function save_post_filter($postID, $post){
if (defined(\'DOING_AUTOSAVE\') && DOING_AUTOSAVE) {
return $postID;
}
else
{
if($parent_id = wp_is_post_revision($postID))
{
$postID = $parent_id;
$post = get_post($postID);
}
$post->post_content = "test";
}
}