WPSEO_Metabox_Tab{}Yoast 1.0

Generates the HTML for a metabox tab.

Хуков нет.

Использование

$WPSEO_Metabox_Tab = new WPSEO_Metabox_Tab();
// use class methods

Методы

  1. public content()
  2. public link()

Код WPSEO_Metabox_Tab{} Yoast 22.4

interface WPSEO_Metabox_Tab {

	/**
	 * Returns the html for the tab link.
	 *
	 * @return string
	 */
	public function link();

	/**
	 * Returns the html for the tab content.
	 *
	 * @return string
	 */
	public function content();
}