Search results for: disable

Disable Automatic Trash Emptying

Prevent WordPress from automatically deleting trashed posts after 30 days.

300+

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.

1.3k

Disable Login Autofocus

Prevent autofocus on the username field on the login page.

600+

Disable Admin Password Reset Emails

Don't send an email to the administrator of the site after a user resets their password.

800+

Hide ‘Screen Options’ Tab

Remove the Screen Options menu at the top of admin pages.

1.0k

Remove Dashboard Welcome Panel

Hide the Welcome Panel on the WordPress dashboard for all users.

3.1k

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.

1.1k
1 13 14 15 16 17 23