Skip to content

Instantly share code, notes, and snippets.

View tejasbusiness's full-sized avatar

Tejas Gandhi tejasbusiness

View GitHub Profile
@alexander-young
alexander-young / functions.php
Created January 15, 2020 05:27
Cleanup WordPress plugin admin
// Removing plugin controls from admin
function remove_plugin_controls($actions, $plugin_file, $plugin_data, $context){
if (array_key_exists('edit', $actions)) {
unset($actions['edit']);
}
if (array_key_exists('deactivate', $actions)) {