你可以做两件事中的一件。第一种建议的方法是使用一个插件,如WordPress SEO. 安装并更换<title>
在您的header.php
使用文件:
<title><?php wp_title(\'\'); ?></title>
或者,您可以使用
is_front_page
或
is_home
条件。
<title>
<?php
bloginfo(\'name\'); // this is the blog name
echo \' | \'; // seperator
if(is_front_page())
{
// what you want for the home page here
}
else
{
bloginfo(\'description\'); // this is the slogan
}
</title>
这有点草率,我建议您考虑使用
wp_title
相反
二十一点十一分header.php
有一个很好的例子this:
<title><?php
/*
* Print the <title> tag based on what is being viewed.
*/
global $page, $paged;
wp_title( \'|\', true, \'right\' );
// Add the blog name.
bloginfo( \'name\' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( \'description\', \'display\' );
if ( $site_description && ( is_home() || is_front_page() ) )
echo " | $site_description";
// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo \' | \' . sprintf( __( \'Page %s\', \'twentyeleven\' ), max( $paged, $page ) );
?></title>