以下代碼粘貼到 function.php 中,即可實現(xiàn)免插件實現(xiàn) WordPress 文章自動添加標簽:
// WordPress 自動為文章添加已使用過的標簽function array2object($array) { // 數(shù)組轉(zhuǎn)對象 if (is_array($array)) { $obj = new StdClass(); foreach ($array as $key => $val){ $obj->$key = $val; } } else { $obj = $array; } return $obj;}function object2array($object) { // 對象轉(zhuǎn)數(shù)組 if (is_object($object)) { foreach ($object as $key => $value) { $array[$key] = $value; } } else { $array = $object; } return $array;}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) { $i = 0; $arrs = object2array($tags);shuffle($arrs);$tags = array2object($arrs);// 打亂順序 foreach ( $tags as $tag ) { // 如果文章內(nèi)容出現(xiàn)了已使用過的標簽,自動添加這些標簽 if ( strpos($post_content, $tag->name) !== false){ if ($i == 5) { // 控制輸出數(shù)量 break; } wp_set_post_tags( $post_id, $tag->name, true ); $i++; } } }}