Tribe__Tickets_Plus__Template::attributes( array $default_attributes = array() )
Return the attributes of the template.
Contents
Parameters
- $default_attributes
-
(array) (Optional) The default attributes.
Default value: array()
Return
(array)
Source
File: src/Tribe/Template.php
public function attributes( $default_attributes = [] ) {
return wp_parse_args(
$this->get( 'attributes', [] ),
$default_attributes
);
}
Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |