我的永久链接设置如下
/%category%/%postname%/
如果我单击我的博客或发布该博客,但该标题未在浏览器页面标题中显示。请帮助我进行修复。
答案 0 :(得分:0)
在您的function.php文件中使用此功能
add_filter( 'wp_title', 'wpse_174379_show_posts_page_wp_title' ); function wpse_174379_show_posts_page_wp_title( $title ) { if( get_option( 'page_for_posts' ) ) { $posts_page = get_post( get_option( 'page_for_posts') );
$title = ' ' . $posts_page->post_title . ' ';
} return $title; }
我认为它对您有用
答案 1 :(得分:0)
尝试这个...
<title><?php if (is_front_page() ) { bloginfo('name'); echo ' - '; bloginfo('description'); } else { wp_title(''); echo ' - '; bloginfo('name'); };?></title>