media_post_single_attachment_fields_to_edit

函数
media_post_single_attachment_fields_to_edit ( $form_fields, $post )
参数
  • (array) $form_fields An array of attachment form fields.
    Required:
  • (WP_Post) $post The WP_Post attachment object.
    Required:
返回值
  • (array) Filtered attachment form fields.
定义位置
相关方法
media_single_attachment_fields_to_editimage_attachment_fields_to_editget_attachment_fields_to_editimage_attachment_fields_to_savewp_ajax_send_attachment_to_editor
引入
2.8.0
弃用
-

media_post_single_attachment_fields_to_edit函数是一个WordPress过滤器,允许开发者修改在编辑单个附件文章时显示的字段。它接受两个参数:一个字段数组和附件对象。开发人员可以使用这个过滤器来添加或删除字段,或修改现有字段的属性。

检索文章的非图像附件字段,以编辑表格字段。

function media_post_single_attachment_fields_to_edit( $form_fields, $post ) {
	unset( $form_fields['image_url'] );
	return $form_fields;
}

常见问题

FAQs
查看更多 >