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 | |
// Removes et_add_viewport_meta from the wp_head phase | |
function remove_divi_actions() { | |
remove_action( 'wp_head', 'et_add_viewport_meta' ); | |
} | |
// Call 'remove_divi_actions' during WP initialization | |
add_action('init','remove_divi_actions'); | |
// add ability to pinch and zoom |