add custom filter to plugins page?
you can do that with the help of 2 filters : add_filter(“plugins_list”, function ($plugins) { $filter_code = “with_b”; if ( isset($_GET[“plugin_status”]) && ($filter_code === $_GET[“plugin_status”]) ) { $GLOBALS[“status”] = $filter_code; // setting the filter to display in current page } // preparation of the plugins in the special category $plugins[$filter_code] = array_filter($plugins[“all”], function ($plugin) { … Read more