# learnpress/4.1.7/inc/lp-widget-functions.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.1.7. 48 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.1.7/code/inc/lp-widget-functions.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.1.7/raw/inc/lp-widget-functions.php
- Modified: 2022-09-13T03:07:46+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.1.7/code/inc/lp-widget-functions.php#L10-L20`.

```php
<?php
/**
 * Include & register widget.
 *
 * @package LearnPress/Widgets
 * @author ThimPress <Nhamdv>
 * @version 4.0.0
 */

defined( 'ABSPATH' ) || exit;

require_once dirname( __FILE__ ) . '/widgets/course-extra.php';
require_once dirname( __FILE__ ) . '/widgets/course-info.php';
require_once dirname( __FILE__ ) . '/widgets/course-progress.php';
require_once dirname( __FILE__ ) . '/widgets/featured-courses.php';
require_once dirname( __FILE__ ) . '/widgets/popular-courses.php';
require_once dirname( __FILE__ ) . '/widgets/recent-courses.php';

add_action(
	'widgets_init',
	function() {
		register_widget( 'LP_Widget_Course_Extra' );
		register_widget( 'LP_Widget_Course_Info' );
		register_widget( 'LP_Widget_Course_Progress' );
		register_widget( 'LP_Widget_Featured_Courses' );
		register_widget( 'LP_Widget_Popular_Courses' );
		register_widget( 'LP_Widget_Recent_Courses' );
	}
);

add_action(
	'wp_enqueue_scripts',
	function() {
		if ( isset( $_GET['legacy-widget-preview'] ) ) {
			wp_enqueue_style( 'learnpress-widgets-admin', LP_PLUGIN_URL . 'assets/css/widgets.css', array() );
		}
	}
);

add_action(
	'elementor/editor/before_enqueue_scripts',
	function() {
		wp_enqueue_script( 'learnpress-widgets-eleentor-select2', LP_PLUGIN_URL . 'assets/src/js/vendor/select2.full.min.js', array( 'jquery' ), false );
		wp_enqueue_script( 'learnpress-widgets-eleentor', LP_PLUGIN_URL . 'assets/js/dist/admin/pages/widgets.js', array( 'jquery' ), false );
	}
);


```
