在主题开发中,我们调用图片的时候,有时候不需要链接,可是系统函数却总是带链接,怎么办?削他!

老规矩,去functions.php,粘贴

//移除图片默认链接——例如:相册
function wpc_imagelink_setup()
{
	$image_set = get_option("image_default_link_type");

	if ($image_set !== "none") {
		update_option("image_default_link_type", "none");
	}
}
add_action("admin_init", "wpc_imagelink_setup", 10);