get_dozent_footer( bool $fullScreen = false, null $name = null )
Load Dozent Footer Template
Parameters
- $name
-
(null) (Optional)
Default value: null
- $fullScreen
-
(bool) (Optional)
Default value: false
Source
File: includes/template-functions.php
function get_dozent_footer( $fullScreen = false, $name = null ) { $enable_focus_mode = (bool) dozent_get_option( 'enable_focus_mode' ); if ( $enable_focus_mode || $fullScreen ) { ?> </div> <?php wp_footer(); ?> </body> </html> <?php } else { get_footer( $name ); } }
Changelog
Version | Description |
---|---|
DozentLMS 1.0.0 | Introduced. |