Tribe__Editor__Blocks__Abstract::name()
Builds the name of the Block
Return
(string)
Source
File: src/Tribe/Editor/Blocks/Abstract.php
public function name() {
if ( false === strpos( $this->slug(), $this->namespace . '/' ) ) {
return $this->namespace . '/' . $this->slug();
} else {
return $this->slug();
}
}
Changelog
| Version | Description |
|---|---|
| 4.8 | Introduced. |