wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_add_footnotes_to_revision › WordPress Function

Since6.3.0
Deprecatedn/a
wp_add_footnotes_to_revision ( $fields )
Parameters:
  • (array) $fields The revision fields.
    Required: Yes
Returns:
  • (array) The revision fields.
Defined at:
Codex:

Adds the footnotes field to the revisions display.



Source

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