Search results for: disable
Disable Automatic Trash Emptying
Prevent WordPress from automatically deleting trashed posts after 30 days.
Disable Blog Posts
// Remove side menu add_action( 'admin_menu', function () { remove_menu_page( 'edit.php' ); } ); // Remove…
Disable Update Notice for Non-admin Users
Don't show WordPress version update notices to users that can't update the site.
Disable Login Autofocus
Prevent autofocus on the username field on the login page.
Disable Admin Password Reset Emails
Don't send an email to the administrator of the site after a user resets their password.
Hide ‘Screen Options’ Tab
Remove the Screen Options menu at the top of admin pages.
Remove Dashboard Welcome Panel
Hide the Welcome Panel on the WordPress dashboard for all users.
test
test
Keep Emoticons
WordPress converts all emoticons to emoji. This small snippet prevents that, without removing emojis from your…
Add User Email To Donation Summary
This will allow - among other places - for the user email to be displayed on…
Remove Default jQuery
// Remove default WordPress jquery wp_deregister_script( 'jquery' ); //Remove jquery migrate add_action( 'wp_default_scripts', 'remove_jquery_migrate' ); function…
Remove Post Title from Yoast Breadcrumbs
This snippet removes the post title from Yoast SEO breadcrumbs
Remove address from the header
Remove address block from the header
Empty Admin Dashboard
Disable all dashboard widgets in the admin and the welcome panel.