add_action ('the_title' , 'test', 10, 2);
function test($title, $id) {
$suffix = 'abc';
return $title.$suffix;
}