Tribe__Tickets__Editor__Template::attributes( array $default_attributes = array() )

Return the attributes of the template


Parameters

$default_attributes

(array) (Optional)

Default value: array()


Top ↑

Return

(array)


Top ↑

Source

File: src/Tribe/Editor/Template.php

	public function attributes( $default_attributes = array() ) {
		return wp_parse_args(
			$this->get( 'attributes', array() ),
			$default_attributes
		);
	}

Top ↑

Changelog

Changelog
Version Description
4.9 Introduced.