remove_all_actions

函数
remove_all_actions ( $hook_name, $priority = false )
参数
  • (string) $hook_name The action to remove callbacks from.
    Required:
  • (int|false) $priority Optional. The priority number to remove them from. Default false.
    Required:
    Default: false
返回值
  • (true) Always returns true.
定义位置
相关方法
remove_actionremove_allowed_optionsremove_all_filtersremove_accentsget_alloptions
引入
2.7.0
弃用
-

remove_all_actions: 这个函数是用来删除所有使用add_action函数添加到钩子上的动作: 当你想删除一个钩子上的所有动作时,这个函数很有用。

从一个动作钩子中删除所有的回调函数。

function remove_all_actions( $hook_name, $priority = false ) {
	return remove_all_filters( $hook_name, $priority );
}

常见问题

FAQs
查看更多 >