有很多wordpress站长不喜欢为文章添加Tag标签,主要原因就是每次发布文章都要手动为文章添加Tag标签,实在是太麻烦了。
那么有没有可能让WordPress站点自动为文章添加以前使用过的Tag标签呢?有没有可能让WordPress站点自动为文章的Tag标签添加链接变成内链呢?这两个问题的答案都是肯定的,今天就跟大家分享WordPress站点实现自动为文章添加Tag标签,并自动为这些标签添加链接变成内连接。
PS:这个WordPress纯代码实现自动添加文章标签的前提条件就是站点的标签足够多,如果站点只有几个标签,添加这个功能就显得很鸡肋了。
WordPress纯代码实现自动添加文章标签的实现方法:只需要将以下代码添加到主题的functions.php文件最后一个?>即可。
/* 自动为文章添加标签 */ add_action('save_post', 'auto_add_tags'); function auto_add_tags(){ $tags = get_tags( array('hide_empty' => false) ); $post_id = get_the_ID(); $post_content = get_post($post_id)->post_content; if ($tags) { foreach ( $tags as $tag ) { // 如果文章内容出现了已使用过的标签,自动添加这些标签 if ( strpos($post_content, $tag->name) !== false) wp_set_post_tags( $post_id, $tag->name, true ); } } }
代码出自:auto-add-tags插件
以上代码的功能就是在我们发布/保存/更新文章时,自动检测文章中的内容,是否出现曾经使用过的标签。如果出现过就会自动为文章添加这些标签。如我们站点有标签:母婴,那么只要我们的文章内容中出现过“母婴”,那么就会自动为该篇文章添加“母婴”标签。
WordPress纯代码实现自动为文章内的标签添加内链的方法:同样是将以下代码添加到主题的functions.php文件最后一个?>即可。
/* 自动为文章内的标签添加内链 */ $match_num_from = 1; //一篇文章中同一个标签少于几次不自动链接 $match_num_to = 1; //一篇文章中同一个标签最多自动链接几次 function tag_sort($a, $b){ if ( $a->name == $b->name ) return 0; return ( strlen($a->name) > strlen($b->name) ) ? -1 : 1; } function tag_link($content){ global $match_num_from,$match_num_to; $posttags = get_the_tags(); if ($posttags) { usort($posttags, "tag_sort"); foreach($posttags as $tag) { $link = get_tag_link($tag->term_id); $keyword = $tag->name; $cleankeyword = stripslashes($keyword); $url = "<a href=\"$link\" title=\"".str_replace('%s',addcslashes($cleankeyword, '$'),__('【查看含有[%s]标签的文章】'))."\""; $url .= ' target="_blank"'; $url .= ">".addcslashes($cleankeyword, '$')."</a>"; $limit = rand($match_num_from,$match_num_to); $content = preg_replace( '|(<a[^>]+>)(.*)('.$ex_word.')(.*)(</a[^>]*>)|U'.$case, '$1$2%&&&&&%$4$5', $content); $content = preg_replace( '|(<img)(.*?)('.$ex_word.')(.*?)(>)|U'.$case, '$1$2%&&&&&%$4$5', $content); $cleankeyword = preg_quote($cleankeyword,'\''); $regEx = '\'(?!((<.*?)|(<a.*?)))('. $cleankeyword . ')(?!(([^<>]*?)>)|([^>]*?</a>))\'s' . $case; $content = preg_replace($regEx,$url,$content,$limit); $content = str_replace( '%&&&&&%', stripslashes($ex_word), $content); } } return $content; } add_filter('the_content','tag_link',1);
以上代码的功能就是在我们发布/保存/更新文章时,自动检测文章中的内容,是否出现标签内容。如果出现过就会自动为文章内的标签添加内链。
只要我们站点的Tag标签够多的情况下,使用这两个代码以实现WordPress站点自动为文章添加标签和标签内链,那么将会大大减少我们的工作量。如果大家平时不喜欢人工添加标签的,不妨试试这个方法。
这种自动加标签的方法方便是方便,但也带来一个问题。某些短代码(shortcode)会被标签(tags)干扰,当主题集成短代码功能时,标签也会自动打在page页面上,而page页面又决定了整个网站的风格,如果page排版布局用到了shortcode的话,那么标签tags就会破坏shortcode。
wordpress默认是不给page打标签的,为了修正上述代码带来的小小不便,我们还需要为wordpress后台page编辑界面和列表界面加上标签tags的管理功能。下面这段代码可以解决问题,将其加入到主题文件夹下的functions.php底部?>之前即可:
//为WordPress页面添加标签和分类 class PTCFP{ function __construct(){ add_action( 'init', array( $this, 'taxonomies_for_pages' ) ); /** * 确保这些查询修改不会作用于管理后台,防止文章和页面混杂 */ if ( ! is_admin() ) { add_action( 'pre_get_posts', array( $this, 'category_archives' ) ); add_action( 'pre_get_posts', array( $this, 'tags_archives' ) ); } // ! is_admin } // __construct /** * 为“页面”添加“标签”和“分类” * * @uses register_taxonomy_for_object_type */ function taxonomies_for_pages() { register_taxonomy_for_object_type( 'post_tag', 'page' ); register_taxonomy_for_object_type( 'category', 'page' ); } // taxonomies_for_pages /** * 在标签存档中包含“页面” */ function tags_archives( $wp_query ) { if ( $wp_query->get( 'tag' ) ) $wp_query->set( 'post_type', 'any' ); } // tags_archives /** * 在分类存档中包含“页面” */ function category_archives( $wp_query ) { if ( $wp_query->get( 'category_name' ) || $wp_query->get( 'cat' ) ) $wp_query->set( 'post_type', 'any' ); } // category_archives } // PTCFP $ptcfp = new PTCFP();
然后到后台page列表管理页,手动删除某个page页面的不必要的标签即可。
参考链接:
http://boke112.com/3337.html
https://www.wpdaxue.com/post-tags-and-categories-for-pages.html