wordpress自定義頁面title
阿新 • • 發佈:2019-02-14
//function程式碼
function weihuan_www_title(){
if ( is_home() ) {
return "首頁";
}elseif ( is_search() ) {
return "搜尋結果頁面";
}elseif ( is_single() ) {
return trim(wp_title('',0));
}elseif ( is_page() ) {
return trim(wp_title('',0));
}elseif ( is_category()) {
return single_cat_title('',false);
}elseif ( is_month() ) {
return the_time('F');
}elseif (is_tag()) {
return single_tag_title("", false);
}
}
//前臺呼叫
echo weihuan_www_title();