Last active
January 10, 2017 10:15
-
-
Save barbareshet/82d6a0feb1c1df622620d34b57f5bcd4 to your computer and use it in GitHub Desktop.
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
// change mobile header theme color | |
//plaese remember to replace "your-color-here" with your HEX value | |
function change_header_color(){ | |
echo '<meta name="theme-color" content="your-color-here" />'; | |
} | |
add_action('wp_head', 'change_header_color'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment