Created
October 14, 2013 11:06
-
-
Save RhythmShahriar/6974058 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/**------------------------------------------- | |
* @package Code Snippets | |
* @link http://rhythmshahriar.com/code/ | |
* @author Rhythm <[email protected]> | |
* @copyright Copyright (c) 2013, Rhythm Shahriar | |
-------------------------------------------------*/ | |
//* Add custom Viewport meta tag for mobile browsers | |
add_action( 'genesis_meta', 'rs_viewport_meta_tag' ); | |
function rs_viewport_meta_tag() { | |
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0"/>'; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/**------------------------------------------- | |
* @package Code Snippets | |
* @link http://rhythmshahriar.com/code/ | |
* @author Rhythm <[email protected]> | |
* @copyright Copyright (c) 2013, Rhythm Shahriar | |
-------------------------------------------------*/ | |
//* Add Viewport meta tag for mobile browsers (requires HTML5 theme support) | |
add_theme_support( 'genesis-responsive-viewport' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment