蓝易云

WordPress 纯代码实现自动添加标签

693次阅读
没有评论

共计 415 个字符,预计需要花费 2 分钟才能阅读完成。

如果不想手动添加标签,可以纯代码实现自动添加标签,不过只能添加已存在的标签。

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 the tag is already used in the post content, add it to the post tags
            if (strpos($post_content, $tag->name) !== false) {
                wp_set_post_tags($post_id, $tag->name, true);
            }
        }
    }
}

提醒:本文发布于626天前,文中所关联的信息可能已发生改变,请知悉!

AD:【腾讯云服务器大降价】2核4G 222元/3年 1核2G 38元/年
正文完
 0
阿蛮君
版权声明:本站原创文章,由 阿蛮君 于2023-03-21发表,共计415字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)
Copyright © 2022-2024 阿蛮君博客 湘ICP备2023001393号
本网站由 亿信互联 提供云计算服务 | 蓝易云CDN 提供安全防护和加速服务
Powered by Wordpress  Theme by Puock