默认旧版本WordPress程序或者是我们复制和采集的数据,内容图片会带有反向链接。这里我们如果一个个删除肯定费时,所以要找到一个批量去除WordPress图片链接的方法。这里,我们找到一个批量去除图片URL的脚本。
function remove_image_links() { //Get the default image link setting in WordPress $image_links_set = get_option('image_default_link_type'); if ($image_links_set !== 'none') { //Update the image link setting to 'none' update_option('image_default_link_type', 'none'); } } add_action('admin_init', 'remove_image_links', 10);
添加到Functions.php中即可。
评论