*
* @package Fjords
*/
/**
* Setup the WordPress core custom header feature.
*
* @uses fjords_header_style()
* @uses fjords_admin_header_style()
* @uses fjords_admin_header_image()
*
* @package Fjords
*/
function fjords_custom_header_setup() {
add_theme_support( 'custom-header', apply_filters( 'fjords_custom_header_args', array(
'default-text-color' => 'ffffff',
'default-image' => '%s/imagenes_qwilm/beach.jpg',
'width' => 900,
'height' => 200,
'wp-head-callback' => 'fjords_header_style',
'admin-head-callback' => 'fjords_admin_header_style',
'admin-preview-callback' => '',
) ) );
}
add_action( 'after_setup_theme', 'fjords_custom_header_setup' );
if ( ! function_exists( 'fjords_header_style' ) ) :
/**
* Styles the header image and text displayed on the blog
*
* @see fjords_custom_header_setup().
*
*/
function fjords_header_style() { ?>
Header admin panel.
*
* @see fjords_custom_header_setup().
*
*/
function fjords_admin_header_style() {
?>