'', 'default-text-color' => 'e9e0e1', 'width' => 348, 'height' => 100, 'flex-height' => true, 'wp-head-callback' => 'safethree_header_style', 'admin-head-callback' => 'safethree_admin_header_style', 'admin-preview-callback' => 'safethree_admin_header_image', ); $args = apply_filters( 'safethree_custom_header_args', $args ); if ( function_exists( 'wp_get_theme' ) ) { add_theme_support( 'custom-header', $args ); } else { // Compat: Versions of WordPress prior to 3.4. define( 'HEADER_TEXTCOLOR', $args['default-text-color'] ); define( 'HEADER_IMAGE', $args['default-image'] ); define( 'HEADER_IMAGE_WIDTH', $args['width'] ); define( 'HEADER_IMAGE_HEIGHT', $args['height'] ); add_custom_image_header( $args['wp-head-callback'], $args['admin-head-callback'], $args['admin-preview-callback'] ); } } add_action( 'after_setup_theme', 'safethree_custom_header_setup' ); /** * Shiv for get_custom_header(). * * get_custom_header() was introduced to WordPress * in version 3.4. To provide backward compatibility * with previous versions, we will define our own version * of this function. * * @todo Remove this function when WordPress 3.6 is released. * @return stdClass All properties represent attributes of the curent header image. * * @package safethree * @since safethree 1.1 */ if ( ! function_exists( 'get_custom_header' ) ) { function get_custom_header() { return (object) array( 'url' => get_header_image(), 'thumbnail_url' => get_header_image(), 'width' => HEADER_IMAGE_WIDTH, 'height' => HEADER_IMAGE_HEIGHT, ); } } if ( ! function_exists( 'safethree_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see safethree_custom_header_setup(). * * @since safethree 1.0 */ function safethree_header_style() { // If no custom options for text are set, let's bail // get_header_textcolor() options: HEADER_TEXTCOLOR is default, hide text (returns 'blank') or any hex value if ( HEADER_TEXTCOLOR == get_header_textcolor() && '' == get_header_image() ) return; // If we get this far, we have custom styles. Let's do this. ?> Header admin panel. * * @see safethree_custom_header_setup(). * * @since safethree 1.0 */ function safethree_admin_header_style() { ?> Header admin panel. * * @see safethree_custom_header_setup(). * * @since safethree 1.0 */ function safethree_admin_header_image() { ?>
>
>