current_filter

函数
current_filter ( No parameters )
返回值
  • (string) Hook name of the current filter.
定义位置
相关方法
current_timeget_current_sitewpmu_current_sitecurrent_user_canset_current_user
引入
2.5.0
弃用
-

current_filter: 这个函数返回当前正在执行的过滤器的名称。它通常用于插件和主题的开发,以调试和跟踪过滤器和动作的流程。

检索当前过滤钩的名称。

function current_filter() {
	global $wp_current_filter;

	return end( $wp_current_filter );
}

常见问题

FAQs
查看更多 >