icon_url; } /** * @param string $icon_url */ public function setIconUrl($icon_url) { $this->icon_url = $icon_url; } /** * Method to build page * @return void */ public function build(){ add_menu_page( $this->page_title, $this->menu_title, $this->capability, $this->menu_slug, $this->function, $this->icon_url, $this->position ); } }