Search results for: admin

Minimalistic Admin Bar

This code snippet allows you to customize the WordPress admin bar by removing the WordPress logo,…

Change "Howdy Admin" in Admin Bar

Customize the "Howdy" message in the admin bar.

3.7k

Admin Bar - Updates

Show updates in Admin Bar

Pre-approval Emails

Email the admin and customer when a pre-approval payment has been made.

Fix LearnPress conflict that hides AIOSEO tabs on settings pages

LearnPress hides the tabs of AIOSEO by loading its Vue assets on our pages. This snippet…

<10

Add duplicate link to admin bar menu

Extend the WPCode duplicate snippet (https://library.wpcode.com/snippet/7oqnzxow/) with an admin bar menu item. The duplicate snippet needs…

<10

Completely Disable Comments

Disable comments for all post types, in the admin and the frontend.

2.2k

Copy Donation Receipt To Admin

/** * Send the donation receipt to the site admin as well. * * @param string|string[]…

Disable Posts Post Type

This snippet hides the default Posts post type from the WordPress admin

<10

Disable All Admin Notices individually

function disable_all_admin_notices() { remove_all_actions('admin_notices'); } add_action('admin_init', 'disable_all_admin_notices');

Disable Full Site Editing (FSE)

Prevent any user from making changes to the site using the Full Site Editor.

100+

Completely Disable Comments

add_action('admin_init', function () { // Redirect any user trying to access comments page global $pagenow; if…

<10

Disable Posts in Admin

Hide the Posts menu from the admin if you don't need the default Posts post type.

100+

Duplicate Posts and Pages

// Add the duplicate link to action list for post_row_actions // for "post" and custom post…

1 2 3 51