如何在更新文章时想要在文章中添加内链方法,
方法一:可以使用插件
插件:《自动内链插件Simple Tags》
方法二:wordpress纯代码自动添加标签内链,将以下代码复制到function.php文件即可(文件在后台——外观——主题编辑器里查找)
//自动为文章添加标签 - https://www.henenseo.com/ 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 ); } } }
评论前必须登录!
注册