Skip to content

Instantly share code, notes, and snippets.

@danielmcclure
Created March 9, 2015 07:44
Show Gist options
  • Save danielmcclure/bac44aa12ba0a0aa2520 to your computer and use it in GitHub Desktop.
Save danielmcclure/bac44aa12ba0a0aa2520 to your computer and use it in GitHub Desktop.
Responsive Viewport for WordPress
<?php
/**
* Viewport Meta Tag for Mobile Browsers
*
* @author Daniel McClure
*/
function tme_viewport_meta_tag() {
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0"/>';
}
add_action( 'wp_head', 'tme_viewport_meta_tag' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment