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



wp_add_footnotes_to_revision › WordPress Function

Seit6.3.0
Veraltetn/v
wp_add_footnotes_to_revision ( $fields )
Parameter:
  • (array) $fields The revision fields.
    Erforderlich: Ja
Gibt zurück:
  • (array) The revision fields.
Definiert in:
Codex:

Adds the footnotes field to the revisions display.



Quellcode

function wp_add_footnotes_to_revision( $fields ) {
	$fields['footnotes'] = __( 'Footnotes' );
	return $fields;
}