我有一个HTML / PHP网站。我正在使用wordpress帖子/页面和功能,我正在使用wordpress页面标题功能:
<title><?php wp_title( '|', true, 'right' ); ?></title>
如果用户访问的Word页面不是Wordpress帖子或页面,则Wordpress标题显示为Page Not Found
如何更改它以便它不会显示未找到的页面,因此它显示了另一个通用标题的页面标题?
答案 0 :(得分:2)
更改wp_title( '|', true, 'right' );
到
if( is_404() ) echo 'your title | ';
else wp_title( '|', true, 'right' );