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

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: true

$translate bool Optional
Whether to translate the header. Defaults to true.

Default: true


Top ↑

Return

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


Top ↑

Source

File: wp-includes/class-wp-theme.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
3.4.0 Introduced.

Top ↑

User Contributed Notes

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