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



wp_get_footnotes_from_revision › WordPress Function

Seit6.3.0
Veraltetn/v
wp_get_footnotes_from_revision ( $revision_field, $field, $revision )
Parameter: (3)
  • (string) $revision_field The field value, but $revision->$field (footnotes) does not exist.
    Erforderlich: Ja
  • (string) $field The field name, in this case "footnotes".
    Erforderlich: Ja
  • (object) $revision The revision object to compare against.
    Erforderlich: Ja
Gibt zurück:
  • (string) The field value.
Definiert in:
Codex:

Gets the footnotes field from the revision for the revisions screen.



Quellcode

function wp_get_footnotes_from_revision( $revision_field, $field, $revision ) {
	return get_metadata( 'post', $revision->ID, $field, true );
}