id = $id; $this->title = $title; $this->view = $view; $this->screen = $screen; $this->context = $context; $this->priority = $priority; $this->args = $args; } /** * Registers the meta box. * * @since 1.0.0 */ public function register() { add_meta_box( $this->id, $this->title, [ $this->view, 'render' ], $this->screen, $this->context, $this->priority, $this->args ); } }