return $this->
get_screenshot( 'relative'
);
// 'author' and 'description' did not previously return translated data.
case 'description':
return $this->
display( 'Description'
);
case 'author':
return $this->
display( 'Author'
);
case 'tags':
return $this->
get( 'Tags'
);
case 'theme_root':
return $this->
get_theme_root();
case 'theme_root_uri':
return $this->
get_theme_root_uri();
// For cases where the array was converted to an object.
default:
return $this->
offsetGet( $offset );
} } /**
* Method to implement ArrayAccess for keys formerly returned by get_themes()
*
* @since 3.4.0
*
* @param mixed $offset
* @param mixed $value
*/