默認(rèn)舊版本W(wǎng)ordPress程序或者是我們復(fù)制和采集的數(shù)據(jù),內(nèi)容圖片會(huì)帶有反向鏈接。這里我們?nèi)绻粋€(gè)個(gè)刪除肯定費(fèi)時(shí),所以要找到一個(gè)批量去除WordPress圖片鏈接的方法。這里,我們找到一個(gè)批量去除圖片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中即可。
評(píng)論