# learnpress/4.3.9.1/inc/admin/settings/class-lp-settings-advanced.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.3.9.1. 40 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.3.9.1/code/inc/admin/settings/class-lp-settings-advanced.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.9.1/raw/inc/admin/settings/class-lp-settings-advanced.php
- Modified: 2026-06-10T02:53:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.3.9.1/code/inc/admin/settings/class-lp-settings-advanced.php#L10-L20`.

```php
<?php
/**
 * Class LP_Settings_Profile
 *
 * @author  ThimPress
 * @package LearnPress/Admin/Classes/Settings
 * @version 4.0.0
 */

use LearnPress\Helpers\Config;

defined( 'ABSPATH' ) || exit;

class LP_Settings_Advanced extends LP_Abstract_Settings_Page {

	public function __construct() {
		$this->id   = 'advanced';
		$this->text = esc_html__( 'Advanced', 'learnpress' );

		parent::__construct();
	}

	public function get_settings( $section = '', $tab = '' ) {
		return Config::instance()->get( 'advanced', 'settings' );
	}

	/**
	 * Get sections for advanced settings.
	 *
	 * @return array<string, string>
	 */
	public function get_sections() {
		return array(
			'general' => esc_html__( 'General', 'learnpress' ),
		);
	}
}

return new LP_Settings_Advanced();

```
