哎,这个最好得根据你的模板来说,不同的模板可能标题的显示方式都不一样。
这个东西定义在主题下得header.php中。
以默认的twenty-ten为例。
在
之后,加入
// 判断当前页面是否为文章页
// 引号均为单引号
这时候后面应该就是原内容了,
需要把原内容开头的变成:
再在后续内容前加上在结尾处的 ?>之后还要加一句
全部代码:
/*
* Print the 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', 'twentyten' ), max( $paged, $page ) );?>