callback = $callback; add_action( $hook, array( $this, 'callback' ), $priority, $args ); } /** * Get action content and set it as the callback. */ public function callback() { echo call_user_func_array( $this->callback[0], $this->callback[1] ); } }