LLMS_Track
LifterLMS Course Tracks
Contents
Source Source
File: includes/class.llms.track.php
class LLMS_Track { /** * @var string * @since 3.0.0 */ public $taxonomy = 'course_track'; /** * @var WP_Term * @since 3.0.0 */ public $term; /** * Constructor * * @param int|string|obj $term term_id, term_slug, or instance of a WP_Term * @since 3.0.0 * @version 3.0.0 */ public function __construct( $term ) { if ( is_numeric( $term ) ) { $this->term = get_term( $term, $this->taxonomy ); } elseif ( is_string( $term ) ) { $this->term = get_term_by( 'slug', $term, $this->taxonomy ); } elseif ( $term instanceof WP_Term ) { $this->term = $term; } } /** * Get an array of WP Posts for the courses in the track * * @return array * @since 3.0.0 * @version 3.0.0 */ public function get_courses() { // No posts in the term, return an empty array. if ( 0 === $this->term->count ) { return array(); } $q = new WP_Query( array( 'post_status' => 'publish', 'post_type' => 'course', 'posts_per_page' => -1, 'tax_query' => array( array( 'field' => 'id', 'include_children' => false, 'taxonomy' => $this->taxonomy, 'terms' => $this->term->term_id, ), ), ) ); if ( $q->have_posts() ) { return $q->posts; } else { return array(); } } /** * Get a permalink to the track's archive page * * @return string * @since 3.0.0 * @version 3.0.0 */ public function get_permalink() { return get_term_link( $this->term->term_id, $this->taxonomy ); } /** * Get the track's title * * @return string * @since 3.8.0 * @version 3.8.0 */ public function get_title() { return $this->term->name; } }
Expand full source code Collapse full source code View on GitHub
Methods Methods
- __construct — Constructor
- get_courses — Get an array of WP Posts for the courses in the track
- get_permalink — Get a permalink to the track's archive page
- get_title — Get the track's title
Changelog Changelog
Version | Description |
---|---|
3.30.3 | Explicitly define class properties. |
3.0.0 | Introduced. |