用語法來移除文章標題的「受保護」字樣

修改網站設定檔案:functions.php

1
2
3
4
5
add_filter('protected_title_format', 'no_title_prefix');
add_filter('private_title_format', 'no_title_prefix');
function no_title_prefix( $prefix ) {
return '%s';
}

|搜尋

|分類