Created
February 5, 2021 13:16
-
-
Save wpmu-authors/98252a9db701ef2d4023815f7a41016c to your computer and use it in GitHub Desktop.
wpmu_header_color.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function wpmu_header_color( $header_color ) { | |
$header_color = get_theme_mod( 'wpmu_header_color', 'blue' ); | |
return $header_color; | |
} | |
add_filter( 'wpmu_header_color_css' , 'wpmu_header_color' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment