dozent_course_archive_sorting_bar( bool $echo = true )

Dozent Archive Sorting Bar


Parameters

$echo

(bool) (Optional)

Default value: true


Return

(mixed|void)


Source

File: includes/template-functions.php

	function dozent_course_archive_sorting_bar( $echo = true ) {

		ob_start();
		dozent_load_template( 'partial.course-sorting-bar' );

		$output = apply_filters( 'dozent_course_archive_sorting_bar', ob_get_clean() );
		if ( $echo ) {
			echo $output;
		}

		return $output;
	}


Changelog

Changelog
Version Description
DozentLMS 1.0.0 Introduced.