handle(); } } /** * @inheritdoc * * @since 2.8.0 */ public function handle() { wp_redirect( $this->getRedirectUrl() ); exit; } /** * @since 2.8.0 */ protected function getRedirectUrl() { return add_query_arg( [ 'post_type' => 'give_forms', 'page' => 'give-setup', ], admin_url('edit.php') ); } }