current_filter()

current_filter() 检索当前筛选器或操作的名称。Retrieve the name of the…

current_filter()

检索当前筛选器或操作的名称。
Retrieve the name of the current filter or action.

目录锚点:#返回#源码#笔记


返回(Return)

(string)当前筛选器或操作的挂接名称。


源码(Source)

/**
 * Retrieve the name of the current filter or action.
 *
 * @since 2.5.0
 *
 * @global array $wp_current_filter Stores the list of current filters with the current one last
 *
 * @return string Hook name of the current filter or action.
 */
function current_filter() {
	global $wp_current_filter;
	return end( $wp_current_filter );
}
更新版本 源码位置 使用 被使用
2.5.0 wp-includes/plugin.php:323 14 0

笔记(Notes)

获取当前筛选器
获取当前操作

类别:WordPress 函数手册

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册