把下面这些代码添加进主题的function.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 ); } } }