我有一個網站,使用worddress catch box theme,我想改變404頁面標題。 我在編輯器的PHP文件中尋找「Nothing found for」句子,但是我什麼也沒找到。我想改變一個wordpress主題的404頁面標題
我搜索了get_header();在編輯器中更改標題的方法,但我沒有找到它。
我有一個網站,使用worddress catch box theme,我想改變404頁面標題。 我在編輯器的PHP文件中尋找「Nothing found for」句子,但是我什麼也沒找到。我想改變一個wordpress主題的404頁面標題
我搜索了get_header();在編輯器中更改標題的方法,但我沒有找到它。
已經被在這裏找到答案:https://wordpress.stackexchange.com/questions/30873/how-to-change-404-page-title
添加以下主題functions.php
文件
function theme_slug_filter_wp_title($title) {
if (is_404()) {
$title = 'ADD 404 TITLE TEXT HERE';
}
// You can do other filtering here, or
// just return $title
return $title;
}
// Hook into wp_title filter hook
add_filter('wp_title', 'theme_slug_filter_wp_title');
您可以使用篩選器掛鉤
function theme_slug_filter_wp_title($title) {
if (is_404()) {
$title = 'ADD 404 TEXT HERE';
}
return $title;
}
add_filter('wp_title', 'theme_slug_filter_wp_title');
我可以添加這些代碼行嗎? – TowTiw