WordPress version is displayed in meta generator tag, but also in css and js scripts loading (i.e. ..jquery.js?ver=5.5.1). How can I hide it? Add … [+]
How can I remove a WordPress access when I only have FTP access? If you want to delete user with id 666, add this code to your functions file: [php] … [+]
Is there an easy way to retrieve the name of the parent page of a WordPress page? Add this code to your plugin or functions file: [php] <?php /** … [+]
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 … [+]
How can I remove all comments from source code? Whether for performance reasons (less lines of code) or confidentiality reasons (hiding commented … [+]
How can I minify my html code? Minification strips a code file of all data that isn’t required in order for the file to be executed. Minified files … [+]
How to make ACF repeater fields more readable? This function will collapse repeater fields by default: [php] /** * Collapse ACF Repeater by default … [+]
How can I remove panels from the WordPress Dashboard? To remove all panels, add this code to your functions.php file [php] /** * Remove all panels … [+]
I have a multilingual WPML site. How can I add a field in my form to get the current language? 1. Add this code to your functions.php file [php] /** … [+]