lifterlms_template_student_dashboard_title()
Dashboard title template
Return Return
(void)
Source Source
File: includes/functions/llms.functions.templates.dashboard.php
function lifterlms_template_student_dashboard_title() {
$data = LLMS_Student_Dashboard::get_current_tab();
$title = isset( $data['title'] ) ? $data['title'] : '';
/**
* Filter the student dasbhoard title for the current tab
*
* @since unknown
*
* @param string $title The student dashboard title.
*/
echo wp_kses_post( apply_filters( 'lifterlms_student_dashboard_title', '<h2 class="llms-sd-title">' . $title . '</h2>', $data ) );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.14.0 | Unknown. |
| 3.0.0 | Introduced. |