title; } public function get_name() { return $this->prefix_name . $this->name; } public function get_icon() { return $this->icon ?? 'eicon-site-logo'; } public function get_keywords() { return array_push( $this->keywords, 'learnpress' ); } public function get_categories() { return $this->categories; } public function get_help_url() { return ''; } /** * Get course * * @return bool|LP_Course|mixed * @deprecated 4.2.7.3 */ public function get_course() { $id = get_the_ID(); if ( ! $id ) { return false; } return learn_press_get_course( $id ); } /** * Get course * * @return false|CourseModel * @since 4.2.7.3 * @version 1.0.0 */ public function get_course_model() { $id = get_the_ID(); if ( ! $id ) { return false; } return CourseModel::find( $id, true ); } }