Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created February 5, 2021 13:16
Show Gist options
  • Save wpmu-authors/98252a9db701ef2d4023815f7a41016c to your computer and use it in GitHub Desktop.
Save wpmu-authors/98252a9db701ef2d4023815f7a41016c to your computer and use it in GitHub Desktop.
wpmu_header_color.php
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