wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



media_single_attachment_fields_to_edit › WordPress Function

Seit2.5.0
Veraltetn/v
media_single_attachment_fields_to_edit ( $form_fields, $post )
Parameter: (2)
  • (array) $form_fields An array of attachment form fields.
    Erforderlich: Ja
  • (WP_Post) $post The WP_Post attachment object.
    Erforderlich: Ja
Gibt zurück:
  • (array) Filtered attachment form fields.
Definiert in:
Codex:

Retrieves the single non-image attachment fields to edit form fields.



Quellcode

function media_single_attachment_fields_to_edit( $form_fields, $post ) {
	unset( $form_fields['url'], $form_fields['align'], $form_fields['image-size'] );
	return $form_fields;
}