is_courses()
Determine if the course catalog (post type archive) is being displayed.
Return Return
(boolean)
Source Source
File: includes/functions/llms-functions-conditional-tags.php
function is_courses() { return ( ( is_post_type_archive( 'course' ) ) || ( is_singular() && is_page( llms_get_page_id( 'courses' ) ) ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.37.0 | Remove ternary. |
3.0.0 | Unknown. |
1.4.4 | Introduced. |