Yoast_Form_Fieldset::legend_add_attributes() public Yoast 1.0
Запрещена (устарела) с версии 11.9. Больше не поддерживается и может быть удалена. Рекомендуется заменить эту функцию на аналог.
Add attributes to the fieldset legend default attributes.
{} Это метод класса: Yoast_Form_Fieldset{}
Хуков нет.
Возвращает
Null. Ничего.
Использование
$Yoast_Form_Fieldset = new Yoast_Form_Fieldset(); $Yoast_Form_Fieldset->legend_add_attributes( $attributes );
- $attributes(массив) (обязательный)
- Array of attributes names and values to merge with the defaults.
Список изменений
Устарела с | 11.9 |
Код Yoast_Form_Fieldset::legend_add_attributes() Yoast Form Fieldset::legend add attributes Yoast 15.6.2
public function legend_add_attributes( $attributes ) {
_deprecated_function( __METHOD__, '11.9' );
$this->legend_attributes = wp_parse_args( $attributes, $this->legend_attributes );
}