Hide the “Pimwick Plugins” menu

Follow these instructions to hide the Pimwick Plugins menu.

Note: this change can be made to your functions.php if you prefer that option.

1. Download the free Code Snippets plugin: https://wordpress.org/plugins/code-snippets/
2. Create a Snippet with the following code:

function remove_pimwick_plugins_menu( $columns ) {
    remove_menu_page( 'pimwick' );
}
add_action( 'admin_menu', 'remove_pimwick_plugins_menu', 99, 1 );

Let me know if you have any questions!

Skip to content