Skip to content

Instantly share code, notes, and snippets.

@billerickson
Last active October 4, 2015 06:38
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 billerickson/2595028 to your computer and use it in GitHub Desktop.
Save billerickson/2595028 to your computer and use it in GitHub Desktop.
Responsive Meta Tag
<?php
/**
* Viewport Meta Tag for Mobile Browsers
*
* @author Bill Erickson
* @link http://www.billerickson.net/code/responsive-meta-tag
*/
function be_viewport_meta_tag() {
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0"/>';
}
add_action( 'wp_head', 'be_viewport_meta_tag' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment