settings_page = new Team_Settings(); add_action( 'admin_menu', array( $this, 'admin_menu' ), 12 ); } public function admin_menu() { add_submenu_page( 'edit.php?post_type=team', __( 'Settings', 'team' ), __( 'Settings', 'team' ), 'manage_options', 'settings', array( $this, 'settings' ) ); add_submenu_page( 'edit.php?post_type=team', __( 'Help', 'team' ), __( 'Help', 'team' ), 'manage_options', 'help', array( $this, 'help' ) ); } public function settings(){ include( 'menu/settings.php' ); } public function help(){ include( 'menu/help.php' ); } } new team_class_settings();