Tribe__Editor__Blocks__Abstract::name()

Builds the name of the Block


Return

(string)


Top ↑

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

Top ↑

Changelog

Changelog
Version Description
4.8 Introduced.