Yoast_Form_Fieldset::legend_hide() public Yoast 1.0
Запрещена (устарела) с версии 11.9. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Visually hide the fieldset legend but keep it available to assistive technologies.
{} Это метод класса: Yoast_Form_Fieldset{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$Yoast_Form_Fieldset = new Yoast_Form_Fieldset(); $Yoast_Form_Fieldset->legend_hide();
Список изменений
Устарела с | 11.9 |
Код Yoast_Form_Fieldset::legend_hide() Yoast Form Fieldset::legend hide Yoast 15.6.2
public function legend_hide() {
_deprecated_function( __METHOD__, '11.9' );
$this->legend_attributes = wp_parse_args(
[ 'class' => 'screen-reader-text' ],
$this->legend_attributes
);
}