# learnpress/4.3.8/config/elementor/instructor/single-instructor.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.3.8. 34 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.3.8/code/config/elementor/instructor/single-instructor.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.3.8/raw/config/elementor/instructor/single-instructor.php
- Modified: 2026-06-01T03:47:14+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.8/code/config/elementor/instructor/single-instructor.php#L10-L20`.

```php
<?php
/**
 * Elementor Controls for instructor settings.
 */

use Elementor\Controls_Manager;

return apply_filters(
	'learn-press/elementor/single-instructor',
	array_merge(
		apply_filters(
			'learn-press/elementor/single-instructor/tab-content/fields',
			[
				'section_content' => [
					'type_detect' => 'section',
					'label'       => esc_html__( 'Content', 'learnpress' ),
				],
				'grid_list_type'  => [
					'type_detect' => 'control',
					'label'       => esc_html__( 'Layout Type', 'learnpress' ),
					'type'        => Controls_Manager::SELECT,
					'options'     => array(
						'list' => esc_html__( 'List', 'learnpress' ),
						'grid' => esc_html__( 'Grid', 'learnpress' ),
					),
					'default'     => 'grid',
				],
				'end_section'     => [],
			]
		),
		[]
	)
);

```
