# learnpress/4.1.7/templates/profile/dashboard.php

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

- Page: https://pluginprobe.com/plugins/learnpress/4.1.7/code/templates/profile/dashboard.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.1.7/raw/templates/profile/dashboard.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/templates/profile/dashboard.php#L10-L20`.

```php
<?php
/**
 * Template for displaying Dashboard of user profile.
 *
 * This template can be overridden by copying it to yourtheme/learnpress/profile/dashboard.php.
 *
 * @author   ThimPress
 * @package  Learnpress/Templates
 * @version  4.0.0
 */

defined( 'ABSPATH' ) || exit();
?>

<div class="learn-press-profile-dashboard">

	<?php
	/**
	 * Before dashboard
	 */
	do_action( 'learn-press/profile/before-dashboard' );

	/**
	 * Dashboard summary
	 */
	do_action( 'learn-press/profile/dashboard-summary' );

	/**
	 * After dashboard
	 */
	do_action( 'learn-press/profile/after-dashboard' );

	?>

</div>

```
