wpseek.com
WordPress开发者和主题制作者的搜索引擎



_wp_footnotes_kses_init › WordPress Function

Since6.3.2
已弃用n/a
_wp_footnotes_kses_init ( 没有参数 )
访问:
  • private
定义在:
文档:

Registers the filter of footnotes meta field if the user does not have `unfiltered_html` capability.



源码

function _wp_footnotes_kses_init() {
	_wp_footnotes_remove_filters();
	if ( ! current_user_can( 'unfiltered_html' ) ) {
		_wp_footnotes_kses_init_filters();
	}
}