How to remove quick edit button in WordPress If you want to hide the quick edit button in WordPress backend, for non-admin, add this code to your plugin or function file: <?php // remove … [+]
How to hide permalink section in WordPress backend? If you want to hide permalink for non-admin, add this code to your plugin or function file: <?php // hide permalink section for non-admin … [+]
Disallow tags in WordPress I don’t use tags in WordPress, how can I disable this functionality? Add this code to your plugin: <?php // Remove submenu … [+]
Remove menus in back-office How can I remove one or several items in WordPress back-office? Add this code to your plugin: <?php // Remove toolbar menus if ( … [+]
Disable Gutenberg Editor in WordPress How can I disable Gutenberg without using a plugin ? To disable Gutenberg and keep the original editor, simply add this 2 lines in functions.php or … [+]