我对wordpress比较陌生。我有一个问题,其中wp_title在我网站的所有页面上显示为空白。
我已经看到一些帖子没有在索引页面上显示页面标题,但是没有发现与它相关的任何内容都没有显示在网站的所有页面上。
使用下面的代码,我的标题标签使用网站名称呈现,但没有页面名称:
<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";
</title>
就像我说的,我是使用Wordpress的新手,所以我很有可能错过了一些非常明显的东西...
答案 0 :(得分:0)
为什么不使用? printf(get_bloginfo(&#39; url&#39;)),printf(get_bloginfo(&#39; description&#39;),printf(&#39; sitename&#39;)。