dozent_get_course_archive_uri()

Get the DozentLMS course archive URL


Description

This function will return an archive URL of the courses Sorting, filter options available to course archive page

See also


Return

(mixed|string)


Source

File: includes/core-functions.php

	function dozent_get_course_archive_uri() {

		/**
		 * Filters the course archive page URL
		 *
		 * @since DozentLMS 1.0.0
		 *
		 * @param string $archive_url an url of the archive page
		 */

		return apply_filters( 'dozent_get_course_archive_uri', get_post_type_archive_link( 'dozent_course' ) );

	}


Changelog

Changelog
Version Description
DozentLMS 1.0.0 Introduced.