_wp_footnotes_kses_init

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

WordPress Version: 6.5

/**
 * Registers the filter of footnotes meta field if the user does not have `unfiltered_html` capability.
 *
 * @access private
 * @since 6.3.2
 */
function _wp_footnotes_kses_init()
{
    _wp_footnotes_remove_filters();
    if (!current_user_can('unfiltered_html')) {
        _wp_footnotes_kses_init_filters();
    }
}

WordPress Version: 3.2

/**
 * Registers the filter of footnotes meta field if the user does not have unfiltered_html capability.
 *
 * @access private
 * @since 6.3.2
 */
function _wp_footnotes_kses_init()
{
    _wp_footnotes_remove_filters();
    if (!current_user_can('unfiltered_html')) {
        _wp_footnotes_kses_init_filters();
    }
}