WordPress 自动为文章添加系统已有标签,自动添加标签内链

代码:

/**
 * 自动给文章添加系统存在的标签
 * 
 * @author star.X
 */
function custom_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);
        }
    }
}
add_action('save_post', 'custom_add_tags');


/**
 * 自动为文章中的标签关键词添加链接
 * 
 * @param $content
 * @return array|mixed|string|string[]|null
 *
 * @author star.X
 */
function tag_link($content) {
    // 一篇文章中同一个标签最多自动链接几次
    $match_num_to = 3;

    // 获取WordPress中所有存在的标签
    $posttags = get_the_tags();
    if ($posttags) {
        foreach ($posttags as $tag) {
            $link = get_tag_link($tag->term_id);
            $keyword = $tag->name;
            $cleankeyword = stripslashes($keyword);
            $url = "<a href=\"$link\" title=\"" . str_replace('%s', addcslashes($cleankeyword, '$'), __('点击了解更多关于[%s]的文章')) . "\"";
            $url .= ' target="_blank"';
            $url .= ">" . addcslashes($cleankeyword, '$') . "</a>";

            // 计算文章中标签出现的次数
            $tagOccurrences = substr_count(strtolower($content), strtolower($cleankeyword));
            // 确保链接数不超过 $match_num_to
            $limit = min($tagOccurrences, $match_num_to);

            // 使用新的正则表达式
            $pattern = '/' . preg_quote($cleankeyword, '/') . '(?![^<]*>|[^<>]*<\/a>)/';
            $content = preg_replace($pattern, $url, $content, $limit);
        }
    }

    return $content;
}

add_filter('the_content', 'tag_link', 1);
JavaScript
点赞

发表回复

电子邮件地址不会被公开。必填项已用 * 标注