/**
* Increases the width of Yoast SEO custom fields
* in Gutenberg editor to full width.
*
* Kolja Nolte <kolja.nolte@gmail.com>
*/
add_action(
'admin_footer',
function () {
if ( ! function_exists( 'wpseo_init' ) ) {
return;
}
?>
<style>
.wpseo-metabox-content,
.wpseo-meta-section,
.wpseo-meta-section-react {
max-width: 100%;
}
</style>
<?php
}
);