-
-
Save alinademi/e37b661f67ceaf0061ea6dc088b4a5ab to your computer and use it in GitHub Desktop.
Force the Yoast metabox to be closed by default.
This file contains hidden or 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
function collapse_yoast_matabox() | |
{ | |
if (!class_exists('WPSEO_Metabox')) { | |
return; | |
} | |
echo /*html*/ ' | |
<script> | |
document.addEventListener("DOMContentLoaded", | |
function(event) { | |
document.querySelector(".yoast.wpseo-metabox").classList.add("closed"); | |
}); | |
</script>'; | |
} | |
add_action('admin_head', 'collapse_yoast_matabox'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment