remove wds_required_plugins filter

This commit is contained in:
abuyoyo 2022-05-17 04:08:32 +03:00 committed by abuoyoyo
parent c1a6502284
commit 832ac9ee83

View File

@ -60,11 +60,3 @@ require_once 'src/NoticeManager.php';
add_action('plugins_loaded', function(){
new NoticeManager();
});
add_filter( 'wds_required_plugins', function($required){
$req_array = [
'screen-meta-links/screen-meta-links.php',
];
return array_merge( $required, $req_array );
});