dozent_placeholder_img_src()

Return the placeholder image source


Description

Example usage:

dozent_placeholder_img_src();

Return

(mixed|void)


Source

File: includes/core-functions.php

	function dozent_placeholder_img_src() {
		$src = DOZENT_URL . 'assets/images/placeholder.svg';

		/**
		 * Filter the return value of dozent_placeholder_img_src();
		 *
		 * @since DozentLMS 1.0.0
		 */

		return apply_filters( 'dozent_placeholder_img_src', $src );
	}


Changelog

Changelog
Version Description
DozentLMS 1.0.0 Introduced.