我想更改wordpress主题的404页面标题

时间:2016-11-28 22:04:10

标签: wordpress

我有一个使用worpdress和catch box theme的网站,我想更改404页面标题。 我在编辑器上查找了PHP文件中的“Nothing found for”句子,但我没有找到任何内容。

我搜索了get_header();在编辑器中更改标题的方法,但我没有找到它。

查看我想要更改的标题 enter image description here

2 个答案:

答案 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' );