WP_Theme::__isset

Advertisement

Summery Summery

__isset() magic method for properties formerly returned by current_theme_info()

Syntax Syntax

WP_Theme::__isset( string $offset )

Parameters Parameters

$offset

(Required) Property to check if set.

Return Return

(bool) Whether the given property is set.

Source Source

File: wp-includes/class-wp-theme.php

	 */
	public function __isset( $offset ) {
		static $properties = array(
			'name',
			'title',
			'version',
			'parent_theme',
			'template_dir',
			'stylesheet_dir',
			'template',
			'stylesheet',
			'screenshot',
			'description',
			'author',
			'tags',
			'theme_root',
			'theme_root_uri',
		);

		return in_array( $offset, $properties, true );

Advertisement

Changelog Changelog

Changelog
Version Description
3.4.0 Introduced.

Advertisement

Leave a Reply