From b8ec3a326dcf9239bbe19e4a85ccccca959d997a Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Thu, 23 Jul 2026 16:08:47 -0500 Subject: [PATCH 1/2] Fix bulk edit checks after 9761 --- src/js/_enqueues/admin/inline-edit-post.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/_enqueues/admin/inline-edit-post.js b/src/js/_enqueues/admin/inline-edit-post.js index 6e9f4e9f20503..36ffaf18ef778 100644 --- a/src/js/_enqueues/admin/inline-edit-post.js +++ b/src/js/_enqueues/admin/inline-edit-post.js @@ -191,7 +191,7 @@ window.wp = window.wp || {}; */ setBulk : function(){ var te = '', type = this.type, c = true; - var checkedPosts = $( 'tbody th.check-column input[type="checkbox"]:checked' ); + var checkedPosts = $( 'tbody .check-column input[type="checkbox"]:checked' ); var categories = {}; this.revert(); @@ -207,7 +207,7 @@ window.wp = window.wp || {}; * * Get the selected posts based on the checked checkboxes in the post table. */ - $( 'tbody th.check-column input[type="checkbox"]' ).each( function() { + $( 'tbody .check-column input[type="checkbox"]' ).each( function() { // If the checkbox for a post is selected, add the post to the edit list. if ( $(this).prop('checked') ) { From c17e05a18c60ab4440a9402d4c27bacdf40f1591 Mon Sep 17 00:00:00 2001 From: Joe Dolson Date: Thu, 23 Jul 2026 16:22:25 -0500 Subject: [PATCH 2/2] Also fix overlooked CSS for titles --- src/wp-admin/css/common.css | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css index 88c1c0d6ac0d1..c286b8fa9ae0c 100644 --- a/src/wp-admin/css/common.css +++ b/src/wp-admin/css/common.css @@ -501,6 +501,7 @@ code { border-bottom-width: 0; } +.widefat th, .widefat td { vertical-align: top; }