我正在使用以下代码来更改帖子标题,但它只会在所有帖子列表中更改,而不会在帖子页面中更改
add_filter(\'the_title\', array($this,\'change_title\'), 10, 2);
public function change_title($title, $id)
{
if (get_post_type($id) == "post") $title = \'Posted: \' . $title;
return $title;
}