Provider::remove_alignwide_from_class_list( array $class_list )

Removes ‘alignwide’ from the class list of the calendar container.


Parameters

$class_list

(array) (Required) An array of the classes applied to the calendar container.


Top ↑

Return

(array)


Top ↑

Source

File: src/Events_Pro/Integrations/Themes/Kadence/Provider.php

	public function remove_alignwide_from_class_list( $class_list ) {
		return array_diff( $class_list, [ 'alignwide' ] );
	}

Top ↑

Changelog

Changelog
Version Description
7.3.0 Introduced.