wordpress的单页面是没有关键字和描述的,但可以用后台的自定义字段功能添加元数据,通过调用自定义字段实现不同的页面显示不同的关键字和描述。
在function文件中添加:
1 2 3 4 5 6 7 8 |
add_action('admin_menu', 'my_page_excerpt_meta_box'); function my_page_excerpt_meta_box() { add_meta_box( 'postexcerpt', '摘要', 'post_excerpt_meta_box', 'page', 'normal', 'core' ); } add_action('admin_menu', 'my_page_tags_meta_box'); function my_page_tags_meta_box() { add_meta_box( 'tagsdiv-post_tag', '关键字', 'post_tags_meta_box', 'page', 'side', 'core' ); } |
修改header.php文件的这个位置:
1 2 3 4 5 6 7 8 9 |
elseif(is_page()) { $description = get_the_excerpt(); $keywords = get_the_tags(); if ($keywords) { foreach($keywords as $tag) { $keywords .= $tag->name . ','; } } } |
给每个页面设置不同的关键词和描述的完整代码,如果你已经有这部分代码,可以只修改:elseif(is_page){…}
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 56 |
<?php $description = ''; $keywords = ''; if (is_home()) { // 将以下引号中的内容改成你的主页description $description = get_bloginfo('description'); // 将以下引号中的内容改成你的主页keywords $keywords = '前端,photoshop,wordpress'; } elseif(is_page()) { $description = get_the_excerpt(); $keywords = get_the_tags(); if ($keywords) { foreach($keywords as $tag) { $keywords .= $tag->name . ','; } } } elseif (is_single()) { //$description1 = get_post_meta($post->ID, "_description_value", true); $description1 = get_the_excerpt(); $description2 = str_replace("\n","",mb_strimwidth(strip_tags($post->post_content), 0, 200, "…", 'utf-8')); // 填写自定义字段description时显示自定义字段的内容,否则使用文章内容前200字作为描述 $description = $description1 ? $description1 : $description2; // 填写自定义字段keywords时显示自定义字段的内容,否则使用文章tags作为关键词 $keywords = get_post_meta($post->ID, "_keywords_value", true); if($keywords == '') { $tags = wp_get_post_tags($post->ID); foreach ($tags as $tag ) { $keywords = $keywords . $tag->name . ", "; } $keywords = rtrim($keywords, ', '); } } elseif (is_category()) { // 分类的description可以到后台 - 文章 -分类目录,修改分类的描述 $description = category_description(); $keywords = single_cat_title('', false); } elseif (is_tag()){ // 标签的description可以到后台 - 文章 - 标签,修改标签的描述 $description = tag_description(); $keywords = single_tag_title('', false); } $description = trim(strip_tags($description)); $keywords = trim(strip_tags($keywords)); ?> <title><?php if (is_home () ) { bloginfo('name');print " | "; bloginfo('description'); } elseif ( is_category() ) { single_cat_title();print " | "; bloginfo('name');} elseif (is_single() ) { single_post_title();print " | ";bloginfo('name');} elseif (is_page() ) { single_post_title();print " | ";bloginfo('name');} elseif (is_tag() ) { single_tag_title();print " | ";bloginfo('name');} else { wp_title('',true); } ?></title> <meta name="keywords" content="<?php echo $keywords; ?>" /> <meta name="description" content="<?php echo $description; ?>" /> |
文章评论 暂无评论
暂无评论