我希望wordpress应显示所选帖子和所选页面的标题。我正在使用商务新闻主题。他们的任何设置是否可用,或者我需要更改代码我是wordpress的新手。我在header.php中找到了标题代码
<title><?php
//Print the <title> tag based on what is being viewed.
global $page, $paged;
// 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', 'business-news' ), max( $paged, $page ) );
?></title>
但是当我选择微粒后,它只显示标题中的网站名称。我失踪的地方?
答案 0 :(得分:0)
试试这个:
<title>
<?php single_post_title(); ?>
</title>
答案 1 :(得分:0)
使用 add_filter wp_title() function
进行管理<title><?php wp_title(''); ?></title>
如果你想在function.php中使用这样的改变
function theme_name_wp_title( $title, $sep ) {
if ( is_feed() ) {
return $title;
}
global $page, $paged;
// Add the blog name
$title .= get_bloginfo( 'name', 'display' );
// Add the blog description for the home/front page.
$site_description = get_bloginfo( 'description', 'display' );
if ( $site_description && ( is_home() || is_front_page() ) ) {
$title .= " $sep $site_description";
}
// Add a page number if necessary:
if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) {
$title .= " $sep " . sprintf( __( 'Page %s', '_s' ), max( $paged, $page ) );
}
return $title;
}
add_filter( 'wp_title', 'theme_name_wp_title', 10, 2 );
答案 2 :(得分:0)