LLMS_Membership::get_instructors( boolean $exclude_hidden = false )

Retrieve course instructor information


Parameters Parameters

$exclude_hidden

(boolean) (Optional) If true, excludes hidden instructors from the return array.

Default value: false


Top ↑

Return Return

(array)


Top ↑

Source Source

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

223
224
225
226
227
228
229
230
231
232
public function get_instructors( $exclude_hidden = false ) {
 
    return apply_filters(
        'llms_membership_get_instructors',
        $this->instructors()->get_instructors( $exclude_hidden ),
        $this,
        $exclude_hidden
    );
 
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.13.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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