Warning: This method has been deprecated.
LLMS_Lesson::get_drip_days()
Get the lesson drip days
Description Description
Return Return
(int) [ID of the prerequisite post]
Source Source
File: includes/models/model.llms.lesson.php
public function get_drip_days() { llms_deprecated_function( 'LLMS_Lesson::get_drip_days()', '3.16.0', "LLMS_Lesson::get( 'days_before_available' )" ); if ( $this->days_before_avalailable ) { return $this->days_before_avalailable; } else { return 0; } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.16.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: