修改網站設定檔案:functions.php
add_filter(
'protected_title_format'
,
'no_title_prefix'
);
'private_title_format'
function
no_title_prefix(
$prefix
) {
return
'%s'
;
}