WordPress 自动为新文章添加已使用过的标签

作者: 蓝鹰 分类: 杂类其它 发布时间: 2013-10-11 21:56 ė95 浏览数 6WordPress 自动为新文章添加已使用过的标签已关闭评论

每次都要手动给文章添加标签,很麻烦?不知文章是否出现以前用过的标签,怎么办?以下代码就可以解决这些问题,它会在你发布/保存文章时,检测文章的内容中,是否出现曾经使用过的标签,如果出现,就自动为文章添加这些标签。

auto-add-tags-wpdaxue_com

将代码添加到主题的 functions.php 即可:


/**
* WordPress 自动为文章添加已使用过的标签
* http://www.wpdaxue.com/auto-add-tags.html
*/
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 );
}
}
}

本文出自 蓝鹰博客,转载时请注明出处及相应链接。

本文永久链接: http://www.lanyingblog.com/blog/818.html

Ɣ回顶部