* * @package Buttercream * @since Buttercream 1.0 */ /** * Setup the WordPress core custom header feature. * * Use add_theme_support to register support for WordPress 3.4+ * as well as provide backward compatibility for previous versions. * Use feature detection of wp_get_theme() which was introduced * in WordPress 3.4. * * @uses buttercream_header_style() * @uses buttercream_admin_header_style() * @uses buttercream_admin_header_image() * * @package Buttercream */ function buttercream_custom_header_setup() { $options = buttercream_get_theme_options(); $style = $options['theme_style']; $defaults = buttercream_get_layout_defaults(); if( isset( $style ) && '' == $style || false == $style ) $style = 'cupcake'; $args = array( 'default-image' => $defaults['default-header-image'], 'default-text-color' => $defaults['default-color'], 'width' => 850, 'height' => 265, 'flex-height' => true, 'wp-head-callback' => 'buttercream_header_style', 'admin-head-callback' => 'buttercream_admin_header_style', 'admin-preview-callback' => 'buttercream_admin_header_image', ); $args = apply_filters( 'buttercream_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'] ); } // Default custom headers packaged with the theme. %s is a placeholder for the theme template directory URI. register_default_headers( array( 'cupcake' => array( 'url' => '%s/img/cupcake.png', 'thumbnail_url' => '%s/img/cupcake-thumb.png', 'description' => __( 'Confetti', 'buttercream' ) ), 'yellow' => array( 'url' => '%s/img/yellow.png', 'thumbnail_url' => '%s/img/yellow-thumb.png', 'description' => __( 'Chocolate Orange', 'buttercream' ) ), 'red' => array( 'url' => '%s/img/red.png', 'thumbnail_url' => '%s/img/red-thumb.png', 'description' => __( 'Red Velvet', 'buttercream' ) ) ) ); } add_action( 'after_setup_theme', 'buttercream_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. * * @return stdClass All properties represent attributes of the curent header image. * * @package Buttercream * @since Buttercream 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( 'buttercream_header_style' ) ) : /** * Styles the header image and text displayed on the blog * * @see buttercream_custom_header_setup(). * * @since Buttercream 1.0 */ function buttercream_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() ) return; // If we get this far, we have custom styles. Let's do this. ?> Header admin panel. * * @see buttercream_custom_header_setup(). * * @since Buttercream 1.0 */ function buttercream_admin_header_style() { $defaults = buttercream_get_layout_defaults(); ?> Header admin panel. * * @see buttercream_custom_header_setup(). * * @since Buttercream 1.0 */ function buttercream_admin_header_image() { ?>

onclick="return false;" href="">

>