dozent_get_template_html( $template, array $args = array() )
Parameters
- $template
-
(Required)
- $args
-
(array) (Optional)
Default value: array()
Return
(mixed|void) Get Dozent Template HTML as output
Source
File: includes/core-functions.php
function dozent_get_template_html($template, $args = []) { ob_start(); dozent_load_template($template, $args); return apply_filters('dozent_get_template_html', ob_get_clean(), $template, $args = []); }
Changelog
Version | Description |
---|---|
DozentLMS 1.0.0 | Introduced. |