Yoast\WP\SEO\Presenters\Webmaster
Google_Presenter{} Yoast 1.0
Presenter class for the Google Search Console verification setting.
Хуков нет.
Возвращает
Null. Ничего.
Использование
$Google_Presenter = new Google_Presenter(); // use class methods
Методы
Код Google_Presenter{} Google Presenter{} Yoast 15.6.2
class Google_Presenter extends Abstract_Indexable_Tag_Presenter {
/**
* The tag format including placeholders.
*
* @var string
*/
protected $tag_format = '<meta name="google-site-verification" content="%s" />';
/**
* Retrieves the webmaster tool site verification value from the settings.
*
* @return string $verification_value The webmaster tool site verification value.
*/
public function get() {
return $this->helpers->options->get( 'googleverify', '' );
}
}