How to remove the author field from bulk/quick edit form?

After exploring several options, I landed on this as the cleanest server side alternative: add_filter(‘admin_head-edit.php’,function(){ $screen = get_current_screen(); if( post_type_supports($screen->post_type,’author’ )){ // remove from bulk/quick edit remove_post_type_support($screen->post_type,’author’); add_filter( ‘manage_posts_columns’, function($columns){ $columns[‘author’] = __(‘Author’); return $columns; }); } });

admin quick edit existing column in posts

Here is my meccano made of pieces found somewhere around. This code is from one of my unfinished and abandoned projects, but it worked (to my personal memory). Note that I’ve prefixed the meta name with the underscore (_tie_post_views) to avoid its appearance in Custom Fields metabox on Post Edit page. You’ll be forced to … Read more

Multi Quick Edit – Possible Or Impossible?

I’m not sure if there’s a WordPress-specific way to do this, but you can do a quick find-and-replace for the offending terms. I don’t know if it follows a pattern, but if you have access to the site through SSH you could do a MySQL dump and find/replace/reimport easily. Try this: mysqldump -uDBUSER -p DBNAME … Read more

Change quick edit terms list to radio buttons

I did solve this by setting the show_ui to false for specific taxonomies… but only on the edit.php screen. Then I added custom columns with my own custom quick edit to mimic the regular quick edit but using a custom Walker. If you add columns with a taxonomy name, WordPress automatically generates the quick edit, … Read more