remove_action() 是WordPress的核心函数,返回值为布尔值。主要用于移除一个附属于指定动作的钩子函数。并且你也可以用替代函数替换掉默认函数。remove_action() 的调用方法如下:
remove_action( string $tag, callable $function_to_remove, int $priority = 10 )
$tag:必填(字符串)。将要被删除的函数所连接到的动作 hook 。
$function_to_remove:必填(回调)。将要被移除的函数名称。
$priority:选填(整型)。函数最初挂载时的优先级。
该函数定义在 wp-includes/plugin.php 文件中:
function remove_action( $tag, $function_to_remove, $priority = 10 ) { return remove_filter( $tag, $function_to_remove, $priority ); }
参考文档:https://developer.wordpress.org/reference/functions/remove_action/
评论 抢沙发