修改網站設定檔案: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' ; } |
修改網站設定檔案: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' ; } |