dozent_course_title( bool $echo = true )
Dozent Course Title
Description
Example usage:
dozent_course_title();
Parameters
- $echo
-
(bool) (Optional)
Default value: true
Return
(mixed|void)
Source
File: includes/template-functions.php
1358 1359 1360 1361 1362 1363 1364 1365 1366 | function dozent_course_title( $echo = true ) { $output = apply_filters( 'dozent_course_title' , dozent_shortcode()->course_title() ); if ( $echo ) { echo $output ; } else { return $output ; } } |
Changelog
Version | Description |
---|---|
DozentLMS 1.0.0 | Introduced. |