wp_keep_footnotes_revision_id

The timeline below displays how wordpress function wp_keep_footnotes_revision_id has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 6.3

/**
 * Keeps track of the revision ID for "rest_after_insert_{$post_type}".
 *
 * @since 6.3.0
 *
 * @global int $wp_temporary_footnote_revision_id The footnote revision ID.
 *
 * @param int $revision_id The revision ID.
 */
function wp_keep_footnotes_revision_id($revision_id)
{
    global $wp_temporary_footnote_revision_id;
    $wp_temporary_footnote_revision_id = $revision_id;
}