WP_Theme::display( string $header, bool $markup = true, bool $translate = true ): string|array|false

In this article

Gets a theme header, formatted and translated for display.

Parameters

$headerstringrequired
Theme header. Name, Description, Author, Version, ThemeURI, AuthorURI, Status, Tags.
$markupbooloptional
Whether to mark up the header. Defaults to true.

Default:true

$translatebooloptional
Whether to translate the header. Defaults to true.

Default:true

Return

string|array|false Processed header. An array for Tags if $markup is false, string otherwise.
False on failure.

Source

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;
}

Changelog

VersionDescription
3.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.