Wordpress网站的关键字及网页描述关系网站对搜索引擎的友好程度,如果自己手动加显然太折腾了,那如何让WordPress博客自动为每篇文章自动关键字及网页描述。每篇文章的内容不同,我们该如何让wordpress自动添加文章描述和关键词呢?下面就让我们来看看如何给wordpress自动添加文章描述和关键词。
重构:首页,分类页,文章页,单页,搜索页面,标签页,专题,快讯页,作者页,404等
第一种:
在你主题的functions.PHP文件添加以下代码,各个代码的功能解析如下:
add_action ( 'wp_head', 'wp_keywords' ,1 ); // 添加关键字
add_action ( 'wp_head', 'wp_description' ,1 ); // 添加页面描述
+----------------------------------------------------------
+----------------------------------------------------------
+----------------------------------------------------------
if (is_single ()) { //如果是文章页,关键词则是:标签+分类ID
if (get_the_tags ( $post->ID )) {
foreach ( get_the_tags ( $post->ID ) as $tag )
$keywords .= $tag->name . ', ';
foreach ( get_the_category ( $post->ID ) as $category )
$keywords .= $category->cat_name . ', ';
$keywords = substr_replace ( $keywords, '', - 2 );
$keywords = '我是主页关键词'; //主页关键词设置
} elseif (is_tag ()) { //标签页关键词设置
$keywords = single_tag_title ( '', false );
} elseif (is_category ()) {//分类页关键词设置
$keywords = single_cat_title ( '', false );
} elseif (is_search ()) {//搜索页关键词设置
$keywords = esc_HTML ( $s, 1 );
$keywords = trim ( wp_title ( '', false ) );
if ($keywords) { //输出关键词
echo "<meta name=\"keywords\" content=\"$keywords\" />\n";
+----------------------------------------------------------
+----------------------------------------------------------
+----------------------------------------------------------
function wp_description(){
$blog_name = get_bloginfo ( 'name' );
if (is_singular ()) { //文章页如果存在描述字段,则显示描述,否则截取文章内容
if (! empty ( $post->post_excerpt )) {
$text = $post->post_excerpt;
$text = $post->post_content;
$description = trim ( str_replace ( array (
), " ", str_replace ( "\"", "'", strip_tags ( $text ) ) ) );
$description = $blog_name . "-" . trim ( wp_title ( '', false ) );
} elseif (is_home ()) {//首页显示描述设置
$description = $blog_name . "-" . get_bloginfo ( 'description' ) .'首页要显示的描述'; // 首頁要自己加
} elseif (is_tag ()) {//标签页显示描述设置
$description = $blog_name . "有关 '" . single_tag_title ( '', false ) . "' 的文章";
} elseif (is_category ()) {//分类页显示描述设置
$description = $blog_name . "有关 '" . single_cat_title ( '', false ) . "' 的文章";
} elseif (is_archive ()) {//文档页显示描述设置
$description = $blog_name . "在: '" . trim ( wp_title ( '', false ) ) . "' 的文章";
} elseif (is_search ()) {//搜索页显示描述设置
$description = $blog_name . ": '" . esc_html ( $s, 1 ) . "' 的搜索結果";
$description = $blog_name . "有关 '" . trim ( wp_title ( '', false ) ) . "' 的文章";
$description = mb_substr ( $description, 0, 220, 'utf-8' ) . '..';
echo "<meta name=\"description\" content=\"$description\" />\n";
第二种:
function bzg_filter_title( $title ) {
add_filter( 'document_title_parts', 'bzg_filter_title', 10, 1 );
function bzg_seo_title() {
global $cat, $tag_id, $page, $paged;
if ( $paged >= 2 || $page >= 2 )
$page_num = '_' . sprintf( '第%s页', max( $paged, $page ) );
$title = wp_get_document_title();
$title = '作者:' . $title;
if( is_category() && get_term_meta( $cat , 'seo_title', true ) )
$title = get_term_meta( $cat , 'seo_title', true );
if( is_tag() && get_term_meta( $tag_id , 'seo_title', true ) )
$title = get_term_meta( $tag_id , 'seo_title', true );
$title .= $page_num . ' - ';
$title .= get_option('blogname');
$description = get_option( 'blogdescription' );
$home_title = get_option( 'home_title' );
} elseif($description) {
$title .= ' - ' . $description;
function bzg_seo_keywords() {
$keywords = get_option( 'home_keywords' );
if ( ( is_category() || is_tag() ))
$keywords = single_cat_title('', false);
if ( is_single() || is_page() ) {
if ( $post->post_excerpt ) {
$keywords = $post->post_excerpt;
$keywords = $post->post_title;
function bzg_seo_description() {
$description = get_option( 'home_description' );
if ( ( is_category() || is_tag() ) && category_description() )
$description = wp_strip_all_tags( category_description(), true );
if ( is_single() || is_page() ) {
if ( $post->post_excerpt ) {
$description = $post->post_excerpt;
$description = mb_strimwidth(esc_html(wp_strip_all_tags($post->post_content, true)), 0, 200);
header.php 调用:
<title><?php echo bzg_seo_title(); ?></title>
$bzg_keywords = bzg_seo_keywords();
if (!empty($bzg_keywords)) {
echo '<meta name="keywords" content="' . $bzg_keywords . '" />';
$bzg_description = bzg_seo_description();
if (!empty($bzg_description)) {
echo '<meta name="description" content="' . $bzg_description . '" />';
<?php if (is_home()) : ?>