Header screen. * } */ add_theme_support( 'custom-header', apply_filters( 'tokoonline_custom_header_args', array( 'default-text-color' => $default_text_color, 'default-image' => '%s/images/headers/jeti.png', 'width' => 1600, 'height' => 230, 'wp-head-callback' => 'tokoonline_header_style', 'admin-preview-callback' => 'tokoonline_admin_header_image', ) ) ); } add_action( 'after_setup_theme', 'tokoonline_custom_header_setup' ); // ------------------------------------------------------------- /** * Convert HEX to RGB. * * @since Toko Online 1.0 * * @param string $color The original color, in 3- or 6-digit hexadecimal form. * @return array */ function tokoonline_hex2rgb( $color ) { $color = trim( $color, '#' ); if ( strlen( $color ) == 3 ) { $r = hexdec( substr( $color, 0, 1 ).substr( $color, 0, 1 ) ); $g = hexdec( substr( $color, 1, 1 ).substr( $color, 1, 1 ) ); $b = hexdec( substr( $color, 2, 1 ).substr( $color, 2, 1 ) ); } else if ( strlen( $color ) == 6 ) { $r = hexdec( substr( $color, 0, 2 ) ); $g = hexdec( substr( $color, 2, 2 ) ); $b = hexdec( substr( $color, 4, 2 ) ); } else { return array(); } return array( 'red' => $r, 'green' => $g, 'blue' => $b ); } // ------------------------------------------------------------- /** * Styles the header image and text displayed on the blog. * * @since Tokoonline 1.0 * @see tokoonline_custom_header_setup(). */ function tokoonline_header_style() { $header_image = get_header_image(); // If no custom options for text are set, let's bail. if ( empty( $header_image ) && display_header_text() ) { return; } // If we get this far, we have custom styles. Let's do this. ?> Header admin panel. * * @since Tokoonline 1.0 * @see tokoonline_custom_header_setup(). */ function tokoonline_admin_header_image() { $style = sprintf( ' style="color: #%s;"', esc_attr( get_header_textcolor() ) ); $color_scheme = tokoonline_get_color_scheme(); $header_background_color = get_theme_mod( 'header_background_color', $color_scheme[1] ); ?>