Skip to content

Instantly share code, notes, and snippets.

@Volnus
Last active April 23, 2017 23:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Volnus/045686dc02129a41b463d0621ff9e00e to your computer and use it in GitHub Desktop.
Save Volnus/045686dc02129a41b463d0621ff9e00e to your computer and use it in GitHub Desktop.
function mobile_theme_color() {
$color = "#000";
//this is for Chrome, Firefox OS, Opera and Vivaldi
echo '<meta name="theme-color" content="'.$color.'">';
//Windows Phone **
echo '<meta name="msapplication-navbutton-color" content="'.$color.'">';
// iOS Safari
echo '<meta name="apple-mobile-web-app-capable" content="yes">';
echo '<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">';
}
add_action( 'wp_head', 'mobile_theme_color' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment