Hooks::filter_body_classes( array $classes )

Filters the body classes to add theme compatibility ones.


Parameters

$classes

(array) (Required) Classes that are been passed to the body.


Top ↑

Return

(array) $classes


Top ↑

Source

File: src/Tribe/Views/V2/Hooks.php

	public function filter_body_classes( $classes ) {
		$classes = $this->container->make( Template_Bootstrap::class )->filter_add_body_classes( $classes );

		return $classes;
	}

Top ↑

Changelog

Changelog
Version Description
4.9.3 Introduced.