remove_action()
remove_action( string $tag, callable $function_to_remov…
remove_action( string $tag, callable $function_to_remove, int $priority = 10 )
从指定的动作挂钩中移除函数。
Removes a function from a specified action hook.
目录锚点:#说明#参数#返回#源码#笔记
说明(Description)
此函数删除附加到指定动作挂钩的函数。此方法可用于删除附加到特定筛选器挂钩的默认函数,并可能用替换函数替换它们。
参数(Parameters)
参数 | 类型 | 必填 | 说明 |
---|---|---|---|
$tag | (string) | 必需 | 将要删除的函数挂接到的动作挂钩。 |
$function_to_remove | (callable) | 必需 | 应删除的函数的名称。 |
$priority | (int) | 可选 | 函数的优先级。 |
返回(Return)
(bool)函数是否被移除。
源码(Source)
/** * Removes a function from a specified action hook. * * This function removes a function attached to a specified action hook. This * method can be used to remove default functions attached to a specific filter * hook and possibly replace them with a substitute. * * @since 1.2.0 * * @param string $tag The action hook to which the function to be removed is hooked. * @param callback $function_to_remove The name of the function which should be removed. * @param int $priority Optional. The priority of the function. Default 10. * @return bool Whether the function is removed. */ function remove_action( $tag, $function_to_remove, $priority = 10 ) { return remove_filter( $tag, $function_to_remove, $priority ); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
1.2.0 | wp-includes/plugin.php:583 | 19 | 1 function |
笔记(Notes)
此函数与remove_filter()函数相同。
如果您需要删除您无权访问的类对象的操作/筛选器,可以使用此函数(包括对WordPress 4.7+的支持)执行此操作:
相关:
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!