摘要:对于wordpress程序站点来讲,seo优化设置功能一直是用户为之吐槽的点,大量的用户选用各种的优化方法与优化插件工具…
对于wordpress程序站点来讲,seo优化设置功能一直是用户为之吐槽的点,大量的用户选用各种的优化方法与优化插件工具来设置wordpress主题的seo,今天大挖给大家推荐一段最佳的wordpress网站seo优化标准范例,大家在开发或是二次开发wordpress主题时参考一下,可以帮助到大家很好的优化搜索引擎访问自己的站点。
将下面代码添加到wordpress主题的header.php文件里面即可。
代码作用:
自动判断当前页面位置,并进行合理的TKD布局优化。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php if ( is_home() ) { ?><title><?php bloginfo(‘name’); ?> | <?php bloginfo(‘description’); ?></title><?php } ?>
<?php if ( is_search() ) { ?><title>搜索结果 | <?php bloginfo(‘name’); ?></title><?php } ?>
<?php if ( is_single() ) { ?><title><?php echo trim(wp_title(”,0)); ?><?php if (get_query_var(‘page’)) { echo ‘-第’; echo get_query_var(‘page’); echo ‘页’;}?> | <?php bloginfo(‘name’); ?></title><?php } ?>
<?php if ( is_page() ) { ?><title><?php echo trim(wp_title(”,0)); ?> | <?php bloginfo(‘name’); ?></title><?php } ?>
<?php if ( is_category() ) { ?><title><?php single_cat_title(); ?> | <?php bloginfo(‘name’); ?></title><?php } ?>
<?php if ( is_year() ) { ?><title><?php the_time(‘Y年’); ?>所有文章 | <?php bloginfo(‘name’); ?></title><?php } ?>
<?php if ( is_month() ) { ?><title><?php the_time(‘F’); ?>份所有文章 | <?php bloginfo(‘name’); ?></title><?php } ?>
<?php if ( is_day() ) { ?><title><?php the_time(‘Y年n月j日’); ?>所有文章 | <?php bloginfo(‘name’); ?></title><?php } ?>
<?php if ( is_404() ) { ?><title>亲,你迷路了! | <?php bloginfo(‘name’); ?></title><?php } ?>
<?php if (function_exists(‘is_tag’)) { if ( is_tag() ) { ?><title><?php single_tag_title(“”, true); ?> | <?php bloginfo(‘name’); ?></title><?php } ?><?php } ?>
<?php if ( is_tax(‘notice’) ) { ?><title><?php setTitle(); ?> | <?php bloginfo(‘name’); ?></title><?php } ?>
<?php
if (!function_exists(‘utf8Substr’)) {
function utf8Substr($str, $from, $len) {
return preg_replace(‘#^(?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,’.$from.‘}’.‘((?:[\x00-\x7F]|[\xC0-\xFF][\x80-\xBF]+){0,’.$len.‘}).*#s’,‘$1’,$str);
}
}
if ( is_single() ) {
if ($post->post_excerpt) {
$description = $post->post_excerpt;
} else {
if(preg_match(‘/<p>(.*)<\/p>/iU’,trim(strip_tags($post->post_content,“<p>”)),$result)){
$post_content = $result[‘1’];
} else {
$post_content_r = explode(“\n”,trim(strip_tags($post->post_content)));
$post_content = $post_content_r[‘0’];
}
$description = utf8Substr($post_content,0,220);
}
$keywords = “”;
$tags = wp_get_post_tags($post->ID);
foreach ($tags as $tag ) {
$keywords = $keywords . $tag->name . “,”;
}
}
?>
<?php echo “\n”; ?>
<?php if ( is_single() ) { ?>
<meta name=“description” content=“<?php echo trim($description); ?>“ />
<meta name=“keywords” content=“<?php echo rtrim($keywords,‘,’); ?>“ />
<?php } ?>
<?php if ( is_page() ) { ?>
<meta name=“description” content=“<?php $description = get_post_meta($post->ID, ‘description’, true);{echo $description;}?>“ />
<meta name=“keywords” content=“<?php $keywords = get_post_meta($post->ID, ‘keywords’, true);{echo $keywords;}?>“ />
<?php } ?>
<?php if ( is_category() ) { ?>
<meta name=“description” content=“<?php echo category_description( $categoryID ); ?>“ />
<?php } ?>
<?php if ( is_tag() ) { ?>
<meta name=“description” content=“<?php echo single_tag_title(); ?>“ />
<?php } ?>
<?php if ( is_home() ) { ?>
<meta name=“description” content=“<?php echo get_option(‘首页文字描述’); ?>“ />
<meta name=“keywords” content=“<?php echo get_option(‘首页关键字’); ?>“ />
<?php } ?>
|
来源:http://www.wazhuti.com/3382.html