wordpress博客title如何修改成:在首页源码显示网站主关键词的标题,内页源码仅显示内页标题。seo插件不好

我刚在wordpress官网下载的主题;header.php:
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<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";

// Add a page number if necessary:
if ( $paged >= 2 || $page >= 2 )
echo ' | ' . sprintf( __( 'Page %s', 'twentyten' ), max( $paged, $page ) );

?></title>

更改后主页title显示要优化的网站主关键词标题,内页title显示长尾关键词标题。

望高手予以解决。

这个问题应该早就有人回答了,只不过是针对关键词和描述,标题你自己加吧,方法参考如下:
我试过 都是有效的
http://hi.baidu.com/%BA%BC%D6%DD%C0%EE%CF%E9/blog/item/a42dcc2606c0cce199250af2.html
1. 在网站根目录 wp content/themes 你安装的主题目录下找到 header.php文件, 一般在后台就可以找到。找到下面的代码

meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /
在下面加上如下调用代码

<?php if (is_home()) { ?>

<meta name="keywords" content="你网站的关键字" />

<meta name="description" content="你网站描述" />

<link rel="canonical" href="<?php echo get_settings('home'); ?>" />

<?php } ?>

<?php if ( is_single() ) { ?>

<meta name="keywords" content="<?php $key="keywords"; echo get_post_meta($post->ID, $key, true); ?>" />

<meta name="description" content="<?php $key="description"; echo get_post_meta($post->ID, $key, true); ?>" />

<link rel="canonical" href="<?php echo get_permalink($post->ID);?>" />

<?php } ?>

2. 修改:你网站的关键字为你主页想要的关键词 的关键字, 你网站的描述为你网站的描述。 主页的关键词和描述就确定了

对于文章页。需要调用一下自定义栏目, 在后台页面右上角打开显示选项(常规状态下它是压缩的)。在自定义栏目出打上勾。

添加两个自定栏目(因为上面的代码已经注释了如果是文章页 ,就调用自定义域中的关键词和描述:

名称一:keywords 值一:你需要的页面关键词

名称二:descroption 值二:你需要的页面描述

参考资料:http://hi.baidu.com/%BA%BC%D6%DD%C0%EE%CF%E9/blog/item/a42dcc2606c0cce199250af2.html

温馨提示:内容为网友见解,仅供参考
第2个回答  2012-02-12
is_home()判断是否是主页
is_single()判断是否是内容页
is_category()判断是否是分类页

Warning: Invalid argument supplied for foreach() in /www/wwwroot/www.t2y.org3v3b34/skin/templets/default/contents.html on line 47
相似回答