Adds the filters for footnotes meta field.
Source
function _wp_footnotes_kses_init_filters() {
add_filter( 'sanitize_post_meta_footnotes', '_wp_filter_post_meta_footnotes' );
}
Changelog
Version | Description |
---|---|
6.3.2 | Introduced. |
CARVIEW |
This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
Adds the filters for footnotes meta field.
function _wp_footnotes_kses_init_filters() {
add_filter( 'sanitize_post_meta_footnotes', '_wp_filter_post_meta_footnotes' );
}
Uses | Description |
---|---|
add_filter()wp-includes/plugin.php | Adds a callback function to a filter hook. |
Used by | Description |
---|---|
_wp_footnotes_kses_init()wp-includes/blocks.php | Registers the filter of footnotes meta field if the user does not have |
_wp_footnotes_force_filtered_html_on_import_filter()wp-includes/blocks.php | Initializes the filters for footnotes meta field when imported data should be filtered. |
Version | Description |
---|---|
6.3.2 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.