Search results for: admin

Admin Menu Editor plugin - Open Custom URL in New Tab

This code Snippet was initially created to be used with the Admin Menu Editor plugin (https://wordpress.org/plugins/admin-menu-editor/),…

Disable Posts Post Type

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

<10

Disable Full Site Editing (FSE)

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

500+

Completely Disable Comments

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

<10

Disable All Admin Notices individually

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

Duplicate Posts and Pages

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

Disable All Updates

Hide all updates for WordPress Core, Plugins and Themes.

400+

Custom drag and drop

Allows you to drag and drop to reorder posts in the WP backend.

Disable Posts in Admin

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

400+

Disable Blog Posts

// Remove side menu add_action( 'admin_menu', function () { remove_menu_page( 'edit.php' ); } ); // Remove…

Add column Product type in WooCommerce

Add a column in the product list to differentiate the type of product

Disable AIOSEO Admin Menu Bar

This filter can be used to Disable AIOSEO Admin Menu Bar.

40+

Remove "WordPress" from admin titles

Stop adding "WordPress" to the admin pages browser title.

1.2k

Post Views Count | Post Views Tracking with Shortcode and Admin Column and Elementor Support

This WordPress code provides a comprehensive solution for tracking post views. It includes: cookie-based view counting…

Add Email Headers

Add headers to Charitable emails (for example CC/BCC headers).

1 2 3 4 123