WP_Customize_Manager::_sanitize_header_textcolor()
Callback for validating the header_textcolor value.
Accepts 'blank', and otherwise uses sanitize_hex_color_no_hash(). Returns default text color if hex color is empty.
Метод класса: WP_Customize_Manager{}
Хуков нет.
Возвращает
Разное
.
Использование
$WP_Customize_Manager = new WP_Customize_Manager(); $WP_Customize_Manager->_sanitize_header_textcolor( $color );
- $color(строка) (обязательный)
- -
Список изменений
С версии 3.4.0 | Введена. |
Код WP_Customize_Manager::_sanitize_header_textcolor() WP Customize Manager:: sanitize header textcolor WP 6.2.2
public function _sanitize_header_textcolor( $color ) { if ( 'blank' === $color ) { return 'blank'; } $color = sanitize_hex_color_no_hash( $color ); if ( empty( $color ) ) { $color = get_theme_support( 'custom-header', 'default-text-color' ); } return $color; }