Source
private function getUri()
{
if (\false !== $this->uri) {
$this->uri = $this->getMetadata('uri') ?? \false;
}
return $this->uri;
}
This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only by core. It is listed here for completeness.
private function getUri()
{
if (\false !== $this->uri) {
$this->uri = $this->getMetadata('uri') ?? \false;
}
return $this->uri;
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.