removed_actions[ $hook ] = $wp_filter[ $hook ]; unset( $wp_filter[ $hook ] ); } } /** * Restore previously removed actions for a given hook. */ public function restore( $hook ) { global $wp_filter; if ( ! empty( $wp_filter ) && isset( $this->removed_actions[ $hook ] ) ) { $wp_filter[ $hook ] = $this->removed_actions[ $hook ]; unset( $this->removed_actions[ $hook ] ); } } }