Skip to content

Instantly share code, notes, and snippets.

@lots0logs
lots0logs / child-theme-functions-php-snippet.php
Last active July 19, 2018 11:29
WordPress :: Divi Theme :: Enable Pinch-To-Zoom
function my_et_add_viewport_meta(){
echo '<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=2.0, user-scalable=1" />';
}
add_action( 'wp_head', 'my_et_add_viewport_meta' , 11 );
function my_et_add_viewport_meta_disable() {
remove_action( 'wp_head', 'et_add_viewport_meta' );
}
add_action( 'after_setup_theme', 'my_et_add_viewport_meta_disabled', 50 );