dozent_site_logo_id()
Return dozent site logo ID
Description
This function will return your site logo image ID if you set it from the Dozent Settings It will help you to create branding on your LMS website
Example usage:
dozent_site_logo_id();
See also
Return
(mixed|void)
Source
File: includes/core-functions.php
function dozent_site_logo_id() { $logo_id = (int)dozent_get_option('site_logo_id'); /** * Filter the logo ID * * @since DozentLMS 1.0.0 * * @param int $logo_id Logo ID */ return apply_filters('dozent_site_logo_id', $logo_id); }
Changelog
Version | Description |
---|---|
DozentLMS 1.0.0 | Introduced. |