current_filter()

current_filter()函数是Wordpress函数,检索当前筛选器或操作的名称。

current_filter()

返回(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.0wp-includes/plugin.php:323140

笔记(Notes)

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

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索