for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Moves the Yoast SEO plugin box to the bottom of the backend interface.
*/
namespace Flynt\YoastToBottom;
function init()
{
return 'low';
}
add_filter('wpseo_metabox_prio', 'Flynt\YoastToBottom\init');