A-A+
wordpress写文章自动添加网站标签
WordPress写完文章后,每次都要手动给文章添加标签。有人问到能否让文章自动识别网站的标签,当文章出现该标签词语时,自动为该文章添加网站标签?答案是有的!
以下代码就可以解决,它会在你发布/保存文章时,检测文章的内容中,是否出现曾经使用过的标签,如果出现,就自动为文章添加这些标签。
/**
* WordPress 自动为文章添加已使用过的标签
* http://meishehome.cn
*/
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 );
}
}
}
把代码放到functions.php即可。是不是很方便呢?