WordPress最常用的标题标签是wp_title函数,所以在此之前,一定要好好了解函数。
用法一
主页:博客名 – 博客描述
主页翻页:博客名 -第 2 页
其它页面:页面名 – 博客名
其它页面:页面名 – 博客名-第 2 页
<?phpif(is_home() && !is_paged()){$title=get_bloginfo('name').' – '.get_bloginfo('description');}else{$title=wp_title(' - ',true,'right');bloginfo('name');}if($paged
如果你想在主页上显示:博客名称 – 博客描述-第 2 页
只需要去除if语句中的&& !is_paged()
此外,我还摘录了官方默认主题twentyeleven标题写法:
<?php/** Print the <?php/** 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()