Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. function address_mobile_address_bar() {
  2. $color = "#008509";
  3. //this is for Chrome, Firefox OS, Opera and Vivaldi
  4. echo '<meta name="theme-color" content="'.$color.'">';
  5. //Windows Phone **
  6. echo '<meta name="msapplication-navbutton-color" content="'.$color.'">';
  7. // iOS Safari
  8. echo '<meta name="apple-mobile-web-app-capable" content="yes">';
  9. echo '<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">';
  10. }
  11. add_action( 'wp_head', 'address_mobile_address_bar' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement