関数 remove_all_actions()
定義ファイル :/blog/wp-includes/plugin.php
remove_all_actions()
1 2 3 4 5 6 7 8 9 10 11 12 | /** * Remove all of the hooks from an action. * * @since 2.7.0 * * @param string $tag The action to remove hooks from. * @param int|bool $priority The priority number to remove them from. Default false. * @return bool True when finished. */ function remove_all_actions($tag, $priority = false) { return remove_all_filters($tag, $priority); } |