Wordpress博客的网站标题/标题

时间:2011-04-22 18:10:24

标签: php html wordpress

我希望我的博客的标题在主页上显示为一样,而在我的博客上的其他地方则显示其他内容。

这段代码看起来不错吗?

<title>
<?php 
if ( is_home() )
   echo "Blog Title" //When on the homepage
else
   echo ucwords(wp_title('',true)); //Name of blog article
   echo ucwords(get_bloginfo('name')); //Followed by site name
?>
</title>

感谢任何反馈。

2 个答案:

答案 0 :(得分:1)

只有一件事你应该在false函数

中传递wp_title

echo ucwords(wp_title('',false));

wp_title函数如果第二个参数传递为true则回显标题,如果传递false,则返回标题以进行进一步操作

答案 1 :(得分:0)

假设您的函数正在运行并检索正确的数据,那么该代码完全可以接受您使用它的内容。