Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implement Custom Header functionality for Twenty Fifteen.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fifteen
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set up the WordPress core custom header feature.
|
|
|
|
*
|
|
|
|
* @uses twentyfifteen_header_style()
|
|
|
|
* @uses twentyfifteen_admin_header_image()
|
|
|
|
*/
|
|
|
|
function twentyfifteen_custom_header_setup() {
|
|
|
|
$color_scheme = twentyfifteen_get_color_scheme();
|
|
|
|
$default_text_color = trim( $color_scheme[4], '#' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Filter Twenty Fifteen custom-header support arguments.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*
|
|
|
|
* @param array $args {
|
|
|
|
* An array of custom-header support arguments.
|
|
|
|
*
|
|
|
|
* @type string $default_text_color Default color of the header text.
|
|
|
|
* @type int $width Width in pixels of the custom header image. Default 954.
|
|
|
|
* @type int $height Height in pixels of the custom header image. Default 1300.
|
|
|
|
* @type string $wp-head-callback Callback function used to styles the header image and text
|
|
|
|
* displayed on the blog.
|
|
|
|
* @type string $admin-preview-callback Callback function used to create the custom header markup in
|
|
|
|
* the Appearance > Header screen.
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
add_theme_support( 'custom-header', apply_filters( 'twentyfifteen_custom_header_args', array(
|
|
|
|
'default-text-color' => $default_text_color,
|
|
|
|
'width' => 954,
|
|
|
|
'height' => 1300,
|
|
|
|
'wp-head-callback' => 'twentyfifteen_header_style',
|
|
|
|
'admin-preview-callback' => 'twentyfifteen_admin_header_image',
|
|
|
|
) ) );
|
|
|
|
}
|
|
|
|
add_action( 'after_setup_theme', 'twentyfifteen_custom_header_setup' );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convert HEX to RGB.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*
|
|
|
|
* @param string $color The original color, in 3- or 6-digit hexadecimal form.
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
function twentyfifteen_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 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! function_exists( 'twentyfifteen_header_style' ) ) :
|
|
|
|
/**
|
|
|
|
* Styles the header image and text displayed on the blog.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
* @see twentyfifteen_custom_header_setup().
|
|
|
|
*/
|
|
|
|
function twentyfifteen_header_style() {
|
|
|
|
$header_image = get_header_image();
|
|
|
|
$text_color = get_header_textcolor();
|
|
|
|
|
|
|
|
// If no custom options for text are set, let's bail.
|
|
|
|
if ( empty( $header_image ) && $text_color == get_theme_support( 'custom-header', 'default-text-color' ) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we get this far, we have custom styles. Let's do this.
|
|
|
|
?>
|
|
|
|
<style type="text/css" id="twentyfifteen-header-css">
|
|
|
|
<?php
|
|
|
|
if ( ! empty( $header_image ) ) :
|
|
|
|
?>
|
|
|
|
.site-header {
|
|
|
|
background: url(<?php header_image(); ?>) no-repeat 50% 50%;
|
|
|
|
-webkit-background-size: cover;
|
|
|
|
-moz-background-size: cover;
|
|
|
|
-o-background-size: cover;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 59.6875em) {
|
|
|
|
body:before {
|
|
|
|
background: url(<?php header_image(); ?>) no-repeat 100% 50%;
|
|
|
|
-webkit-background-size: cover;
|
|
|
|
-moz-background-size: cover;
|
|
|
|
-o-background-size: cover;
|
|
|
|
background-size: cover;
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-header {
|
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
<?php
|
|
|
|
endif;
|
|
|
|
|
|
|
|
// Has the text been hidden?
|
|
|
|
if ( ! display_header_text() ) :
|
|
|
|
?>
|
|
|
|
.site-title,
|
|
|
|
.site-description {
|
|
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
<?php
|
|
|
|
// If the user has set a custom color for the text use that
|
|
|
|
elseif ( $text_color != get_theme_support( 'custom-header', 'default-text-color' ) ) :
|
|
|
|
?>
|
|
|
|
.site-title a,
|
|
|
|
.site-title a:hover,
|
|
|
|
.site-title a:focus,
|
|
|
|
.site-description {
|
|
|
|
color: #<?php echo esc_attr( $text_color ); ?>;
|
|
|
|
}
|
|
|
|
<?php endif; ?>
|
|
|
|
</style>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
endif; // twentyfifteen_header_style
|
|
|
|
|
|
|
|
if ( ! function_exists( 'twentyfifteen_admin_header_image' ) ) :
|
|
|
|
/**
|
|
|
|
* Custom header image markup displayed on the Appearance > Header admin panel.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
* @see twentyfifteen_custom_header_setup().
|
|
|
|
*/
|
|
|
|
function twentyfifteen_admin_header_image() {
|
2014-10-29 00:08:23 +01:00
|
|
|
$style = sprintf( ' style="color: #%s;"', esc_attr( get_header_textcolor() ) );
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
$color_scheme = twentyfifteen_get_color_scheme();
|
|
|
|
$header_background_color = get_theme_mod( 'header_background_color', $color_scheme[1] );
|
|
|
|
?>
|
|
|
|
<div id="headimg" style="background-image: url(<?php header_image(); ?>); background-color: <?php echo esc_attr( $header_background_color ); ?>;">
|
2014-10-29 00:08:23 +01:00
|
|
|
<h1 class="displaying-header-text"><a id="name"<?php echo $style; ?> onclick="return false;" href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php bloginfo( 'name' ); ?></a></h1>
|
|
|
|
<div id="desc" class="displaying-header-text"<?php echo $style; ?>><?php bloginfo( 'description' ); ?></div>
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
</div>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
endif; // twentyfifteen_admin_header_image
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueues front-end CSS for the header background color.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
function twentyfifteen_header_background_color_css() {
|
|
|
|
$header_background_color = get_theme_mod( 'header_background_color', '#ffffff' );
|
|
|
|
|
|
|
|
// Don't do anything if the current color is the default.
|
|
|
|
if ( '#ffffff' === $header_background_color ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$css = '
|
|
|
|
/* Custom Header Background Color */
|
|
|
|
body:before,
|
|
|
|
.site-header {
|
|
|
|
background-color: %1$s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 59.6875em) {
|
2014-11-03 18:01:23 +01:00
|
|
|
.site-header,
|
|
|
|
.secondary {
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget button,
|
|
|
|
.widget input[type="button"],
|
|
|
|
.widget input[type="reset"],
|
|
|
|
.widget input[type="submit"],
|
|
|
|
.widget_calendar tbody a,
|
|
|
|
.widget_calendar tbody a:hover,
|
|
|
|
.widget_calendar tbody a:focus {
|
|
|
|
color: %1$s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
';
|
|
|
|
|
|
|
|
wp_add_inline_style( 'twentyfifteen-style', sprintf( $css, $header_background_color ) );
|
|
|
|
}
|
|
|
|
add_action( 'wp_enqueue_scripts', 'twentyfifteen_header_background_color_css', 11 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueues front-end CSS for the sidebar text color.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
function twentyfifteen_sidebar_text_color_css() {
|
|
|
|
$sidebar_link_color = get_theme_mod( 'sidebar_textcolor', '#333333' );
|
|
|
|
|
|
|
|
// Don't do anything if the current color is the default.
|
|
|
|
if ( '#333333' === $sidebar_link_color ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we get this far, we have custom styles. Let's do this.
|
|
|
|
$sidebar_link_color_rgb = twentyfifteen_hex2rgb( $sidebar_link_color );
|
|
|
|
$sidebar_text_color = vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.7)', $sidebar_link_color_rgb );
|
|
|
|
$sidebar_border_color = vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.1)', $sidebar_link_color_rgb );
|
|
|
|
$sidebar_border_focus_color = vsprintf( 'rgba( %1$s, %2$s, %3$s, 0.3)', $sidebar_link_color_rgb );
|
|
|
|
|
|
|
|
$css = '
|
|
|
|
/* Custom Sidebar Text Color */
|
|
|
|
.secondary-toggle:before {
|
|
|
|
color: %1$s;
|
|
|
|
}
|
|
|
|
|
2014-11-03 18:01:23 +01:00
|
|
|
.secondary-toggle {
|
|
|
|
border-color: %1$s; /* Fallback for IE7 and IE8 */
|
|
|
|
border-color: %3$s;
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
}
|
|
|
|
|
2014-11-03 18:01:23 +01:00
|
|
|
.secondary-toggle:hover,
|
|
|
|
.secondary-toggle:focus {
|
|
|
|
border-color: %1$s; /* Fallback for IE7 and IE8 */
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
border-color: %4$s;
|
|
|
|
}
|
|
|
|
|
2014-11-03 18:01:23 +01:00
|
|
|
.site-title a {
|
|
|
|
outline-color: %1$s; /* Fallback for IE7 and IE8 */
|
|
|
|
outline-color: %4$s;
|
|
|
|
}
|
|
|
|
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
@media screen and (min-width: 59.6875em) {
|
2014-11-03 18:01:23 +01:00
|
|
|
.secondary a,
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
.dropdown-toggle:after,
|
|
|
|
.widget-title,
|
2014-11-03 18:01:23 +01:00
|
|
|
.widget blockquote cite,
|
|
|
|
.widget blockquote small {
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
color: %1$s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget button,
|
|
|
|
.widget input[type="button"],
|
|
|
|
.widget input[type="reset"],
|
|
|
|
.widget input[type="submit"],
|
|
|
|
.widget_calendar tbody a {
|
|
|
|
background-color: %1$s;
|
|
|
|
}
|
|
|
|
|
2014-11-03 18:01:23 +01:00
|
|
|
.textwidget a {
|
|
|
|
border-color: %1$s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.secondary a:hover,
|
|
|
|
.secondary a:focus,
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
.main-navigation .menu-item-description,
|
|
|
|
.widget,
|
|
|
|
.widget blockquote,
|
|
|
|
.widget .wp-caption-text,
|
|
|
|
.widget .gallery-caption {
|
|
|
|
color: %2$s;
|
|
|
|
}
|
|
|
|
|
2014-11-03 18:01:23 +01:00
|
|
|
.widget button:hover,
|
|
|
|
.widget button:focus,
|
|
|
|
.widget input[type="button"]:hover,
|
|
|
|
.widget input[type="button"]:focus,
|
|
|
|
.widget input[type="reset"]:hover,
|
|
|
|
.widget input[type="reset"]:focus,
|
|
|
|
.widget input[type="submit"]:hover,
|
|
|
|
.widget input[type="submit"]:focus,
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
.widget_calendar tbody a:hover,
|
|
|
|
.widget_calendar tbody a:focus {
|
|
|
|
background-color: %2$s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget blockquote {
|
|
|
|
border-color: %2$s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-navigation ul,
|
|
|
|
.main-navigation li,
|
|
|
|
.secondary-toggle,
|
2014-11-03 18:01:23 +01:00
|
|
|
.widget input,
|
|
|
|
.widget textarea,
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
.widget table,
|
|
|
|
.widget th,
|
|
|
|
.widget td,
|
|
|
|
.widget pre,
|
|
|
|
.widget li,
|
2014-11-03 18:01:23 +01:00
|
|
|
.widget_categories .children,
|
|
|
|
.widget_nav_menu .sub-menu,
|
|
|
|
.widget_pages .children,
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
.widget abbr[title] {
|
|
|
|
border-color: %3$s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-toggle:hover,
|
|
|
|
.dropdown-toggle:focus,
|
|
|
|
.widget hr {
|
|
|
|
background-color: %3$s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.widget input:focus,
|
|
|
|
.widget textarea:focus {
|
|
|
|
border-color: %4$s;
|
|
|
|
}
|
2014-11-03 18:01:23 +01:00
|
|
|
|
|
|
|
.sidebar a:focus,
|
|
|
|
.dropdown-toggle:focus {
|
|
|
|
outline-color: %4$s;
|
|
|
|
}
|
Importing Twenty Fifteen, first pass at our new default theme for 2015, set for 4.1.
It's good for posts, it's good for pages, it might be good for you. Development will occur in trunk. Have at it.
Props matt, iandstewart, iamtakashi, obenland, cainm, kristastevens, karmatosed, chellycat, lancewillett, kwight, davidakennedy. See #29799
Built from https://develop.svn.wordpress.org/trunk@29892
git-svn-id: http://core.svn.wordpress.org/trunk@29648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2014-10-14 21:28:18 +02:00
|
|
|
}
|
|
|
|
';
|
|
|
|
|
|
|
|
wp_add_inline_style( 'twentyfifteen-style', sprintf( $css, $sidebar_link_color, $sidebar_text_color, $sidebar_border_color, $sidebar_border_focus_color ) );
|
|
|
|
}
|
|
|
|
add_action( 'wp_enqueue_scripts', 'twentyfifteen_sidebar_text_color_css', 11 );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueue styles to admin screen for custom header display.
|
|
|
|
*
|
|
|
|
* @since Twenty Fifteen 1.0
|
|
|
|
*/
|
|
|
|
function twentyfifteen_admin_fonts() {
|
|
|
|
wp_enqueue_style( 'twentyfifteen-fonts', twentyfifteen_fonts_url(), array(), null );
|
|
|
|
wp_enqueue_style( 'twentyfifteen-custom-header', get_template_directory_uri() . '/css/admin-custom-header.css', array(), '20141010' );
|
|
|
|
}
|
|
|
|
add_action( 'admin_print_scripts-appearance_page_custom-header', 'twentyfifteen_admin_fonts' );
|