保存時にコンテンツを変更し、投稿のタイトルにアクセスする必要があります。これまでに functions.php にあったものです
add_filter('content_save_pre', 'custom_content_save_pre');
function custom_content_save_pre($s) {
// need to access post title here
$postTitle = ?
// some more code here
return $s;
}