LLMS_Shortcodes::course_title( array $atts )
Retrieve the Course Title
Description Description
Parameters Parameters
- $atts
-
(array) (Required) accepts no arguments
Return Return
(string)
Source Source
File: includes/shortcodes/class.llms.shortcodes.php
public static function course_title( $atts ) { $course_id = self::get_course_id(); if ( ! $course_id ) { return ''; } return get_the_title( $course_id ); }
Expand full source code Collapse full source code View on GitHub