“来自Url”选项卡的表单似乎几乎是硬编码的,所以我认为没有必要删除“链接图像到”字段。
但是,对于“媒体库”选项卡,您可以删除链接字段,如下所示:
add_filter(\'attachment_fields_to_edit\', \'my_attachment_fields_edit\', 10, 2);
function my_attachment_fields_edit($form_fields,$post){
//Set attachment link to none and hide it.
$html = "<input type=\'hidden\' name=\'attachments[".$post->ID."][url]\' value=\'\'/>";
$form_fields[\'url\'][\'html\'] = $html; //Replace html
$form_fields[\'url\'][\'label\'] = \'\'; //Remove label
$form_fields[\'url\'][\'helps\'] =\'\';//Remove help text
return $form_fields;
}