Function Reference: geodir_twentyseventeen_body_classes

Summary

This function has not been documented yet.

Source File

geodir_twentyseventeen_body_classes() is located in geodirectory-functions/compatibility/Twenty_Seventeen.php [Line: 66]

Source Code

function geodir_twentyseventeen_body_classes($classes){

	if(geodir_is_page('add-listing')
	   || geodir_is_page('preview')
	   || geodir_is_page('home')
	   || geodir_is_page('location')
	   || geodir_is_page('listing')
	   || geodir_is_page('search')
	   || geodir_is_page('author')
	){
		$classes[] = 'has-sidebar';
	}
	return $classes;
}