WP_Theme::display() WordPress Method
The WP_Theme::display() method is used to display a theme. A theme can be displayed in several ways, including as a template in a WordPress template hierarchy, as a template in a WordPress theme, or as a WordPress widget.
WP_Theme::display( string $header, bool $markup = true, bool $translate = true ) #
Gets a theme header, formatted and translated for display.
Parameters
- $header
(string)(Required)Theme header. Name, Description, Author, Version, ThemeURI, AuthorURI, Status, Tags.
- $markup
(bool)(Optional) Whether to mark up the header. Defaults to true.
Default value: true
- $translate
(bool)(Optional) Whether to translate the header. Defaults to true.
Default value: true
Return
(string|array|false) Processed header. An array for Tags if $markup is false, string otherwise. False on failure.
Source
File: wp-includes/class-wp-theme.php
public function display( $header, $markup = true, $translate = true ) {
$value = $this->get( $header );
if ( false === $value ) {
return false;
}
if ( $translate && ( empty( $value ) || ! $this->load_textdomain() ) ) {
$translate = false;
}
if ( $translate ) {
$value = $this->translate_header( $header, $value );
}
if ( $markup ) {
$value = $this->markup_header( $header, $value, $translate );
}
return $value;
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 3.4.0 | Introduced. |