LLMS_Lesson::set_title( string $title )

Set lesson title


Parameters Parameters

$title

(string) (Required) The lesson title.


Top ↑

Return Return

(false|array) False if the title couldn't be updated. An array of the type array( 'id' => lesson id, 'title' => the new title, ) otherwise.


Top ↑

Source Source

File: includes/models/model.llms.lesson.php

	public function set_title( $title ) {

		return LLMS_Post_Handler::update_title( $this->id, $title );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
unknown Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.