PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.3.9
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.3.9
4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 4.2.1 All 138 releases
learnpress / inc / Filters / class-lp-course-filter.php

class-lp-course-filter.php in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.3.9, at inc/Filters/class-lp-course-filter.php

33 lines 529 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Class LP_Course_Filter
4 *
5 * @author ThimPress
6 * @package LearnPress/Classes/Filters
7 * @version 3.2.9
8 */
9
10 /**
11 * Prevent loading this file directly
12 */
13 defined( 'ABSPATH' ) || exit();
14
15 class LP_Course_Filter extends LP_Post_Type_Filter {
16 /**
17 * @var string
18 */
19 public $post_type = LP_COURSE_CPT;
20 /**
21 * @var string Level of Course
22 */
23 public $levels = [];
24 /**
25 * @var string
26 */
27 public $taxonomy = 'course_category';
28 /**
29 * @var string
30 */
31 public $type = 'all';
32 }
33