Feature request: Change Browser Header Color

Hi!

I made a mini plugin to change the browser header color, but I think this could be a great option in Theme Options. Also, if there is no plugin, it is one reason less to install a Child theme. :slight_smile:

// change temp theme  browser header
add_action( 'wp_head', 'change_browser_header_color', 99999 );
function change_browser_header_color() {
  ?>
    <meta name="theme-color" content="#color-here" />
  <?php
}

Thanks!

2 Likes

It’s the little things, +1 for adding this to Theme Options.

1 Like

That is very cool, I didn’t know that was a mobile browser feature. I will definitely add a theme options request for this.

4 Likes