Yoast\WP\SEO\User_Meta\Framework\Custom_Meta

Author_Title::is_setting_enabled()publicYoast 1.0

Returns whether the respective global setting is enabled.

Метод класса: Author_Title{}

Хуков нет.

Возвращает

true|false. Whether the respective global setting is enabled.

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

$Author_Title = new Author_Title();
$Author_Title->is_setting_enabled(): bool;

Код Author_Title::is_setting_enabled() Yoast 25.0

public function is_setting_enabled(): bool {
	return ( ! $this->options_helper->get( 'disable-author' ) );
}