2014-01-24 48 views
1

我跟着本指南有我的博客出現在mydomain.com/blogwp_title()不與非根文件夾博客工作正常

http://codex.wordpress.org/Making_Your_Blog_Appear_in_a_Non-Root_Folder

總之,我使用自定義頁面模板來創建靜態頁面「博客」,然後去和呈現的帖子:

<?php 
/* 
Template Name: Blog 
*/ 

// Which page of the blog are we on? 
$paged = get_query_var('paged'); 
query_posts('cat=-0&paged='.$paged); 

// make posts print only the first part with a link to rest of the post. 
global $more; 
$more = 0; 

//load index to show blog 
load_template(TEMPLATEPATH . '/index.php'); 
?> 

在我的主題,我使用下面的語法渲染<title>標籤:

<title><?php bloginfo('name'); ?> | <?php is_front_page() ? bloginfo('description') : wp_title(''); ?></title> 

這是在食品說明如下:

http://codex.wordpress.org/Function_Reference/wp_title#Covering_Homepage

的問題是,現在mydomain.com/blog,沒有通過wp_title( '')渲染稱號;

如果我停止使用blog.php模板,則標題顯示正確。顯然,博客文章不再是了。在這種情況下如何讓wp_title()顯示正確的標題?

回答