我有一个使用worpdress和catch box theme的网站,我想更改404页面标题。 我在编辑器上查找了PHP文件中的“Nothing found for”句子,但我没有找到任何内容。
我搜索了get_header();在编辑器中更改标题的方法,但我没有找到它。
答案 0 :(得分:0)
此处已经回答: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' );
答案 1 :(得分:0)
您可以使用过滤器挂钩
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' );