I managed to find a solution by myself. Just replace:
$bulk_row.find( '#bulk-titles' ).children().each( function() {
$post_ids.push( $( this ).attr( 'id' ).replace( /^(ttle)/i, '' ) );
});
with:
$bulk_row.find( '#bulk-titles-list .button-link.ntdelbutton' ).each( function() {
$post_ids.push( $( this ).attr( 'id' ).replace( /_/g, '' ) );
});
Related Posts:
- Validating Custom Meta Box Values & Required Fields
- How to save a ToggleControl value in a meta field?
- jQuery – Automatic event trigger does not **really** check my form
- How to use media upload on metabox post page without breaking TinyMCE?
- Most efficient way to add javascript file to specific post and/or pages?
- Custom post meta field effect on the performance on the post
- Difference between meta keys with _ and without _ [duplicate]
- Orderby meta_value only returns posts that have existing meta_key
- What is “meta_input” parameter in wp_insert_post() used for?
- How to enable revisions for post meta data?
- Using TinyMce with textareas in meta boxes on custom post types
- Can I count the number of users matching a value in a multiple value key?
- Auto sort the wp-admin post list by a meta key
- How to prevent custom fields from being cleared during a bulk edit?
- Is there a hook / action that is triggered when adding or removing a post thumbnail?
- passing argument to get_template_part() or a better way to code
- Get updated meta data after save_post hook
- Create meta boxes that don’t show in custom fields
- Store JSON in a custom field
- Ordering posts by anniversary using only day and month
- How to use pagination with get_post_meta
- Copying Custom Meta Values from existing post to a duplicate post
- Move value of one custom field to another
- Displaying posts with only upcoming dates according their custom field date value
- Custom fields: In what order are they saved into the DB?
- Get a post_id where meta_value equals something in a serialized meta_value field
- Author Page Custom Query WHERE author OR [post meta value] OR [post meta value]
- MySQL query to set wp_postmeta using term_taxonomy_id value
- How to Validate Post Meta type/extension (Video File Image File etc)
- Custom Meta Box not Saving in Posts with Gutenberg Editor
- How can I sort homepage by a meta value?
- How do I use wp_query for WordPress search?
- Nav Menu – Add class based on meta keys
- How to update a meta field of type array in Gutenberg
- How to wrap meta values seperated by comma in ? [closed]
- Bulk remove post meta
- How to create html block to display extra information on woocommerce single product page
- Create Multiple File Upload Metabox in WordPress
- Run a check for multiple meta key values
- WordPress Rest API to call page data associate with custom meta
- Add new image block, set default class name and update it using Javascript
- Hide custom meta data if empty
- Manipulate javascript code from custom made admin page menu
- How to create a shortcode to print specific values stored in a post meta array?
- How to load an assets based on custom field value?
- Adding auto-complete to custom gravity field not working
- How to populate custom field dropdown box based on prior selection?
- Custom WP_Query for WordPress Search Results with meta_query
- Uploading PDF using Media Uploader
- How can you include custom post meta in search without calling each key?
- Populate Javascript code with value from WordPress Custom Field?
- Can I access a post meta field before the loop?
- wrap text around custom fields array
- How can I modify RSS item titles to be either the title or a custom meta field?
- Avoiding ACF get_field and returning to core WordPress function
- Get all the posts where meta field with multiple choice has several values checked
- Move Title and the Content WYSIWYG editor position
- How do i get the attached images with custom value checked?
- Save all the post tags inside a custom field
- WordPress colorpicker save both hex and RGB
- Update post meta custom field using block editor
- Get custom fields without _edit_last, _edit_lock, _wp_page_template and _visual-subtitle
- Display posts with empty custom field
- Get YouTube video id from url in a custom field
- Why am I getting a “Call to member function format() on a non-object” error?
- Can’t Output get_post_meta?
- How do I convert all custom_field php timestamps in the database to js timestamps?
- Modify custom field from front end
- Footnotes in custom fields
- Jquery on custom-field backend
- Create a new custom field for all posts based on current custom field
- Trying to implement AJAX into my admin pages. Am I improperly enqueue and localizing my scripts?
- wordpress get_post_meta / the_meta to output custom field value
- Custom Query: query by post custom meta data
- update_post_meta not working well
- How can I change author of posts to the value of one of the custom field of the posts?
- wp_set_object_term via js btn frontend
- Custom meta fields and meta keys
- How to add a post’s view count into the WordPress API response
- Can’t set custom meta fields for a post
- Saving Custom Field that includes Quotation marks
- Dropdown (with onChange) with custom taxonomies
- Post meta data not showing in frontend, until hitting ‘update’ button
- searching by keywords in post’s metas or pagination links problem
- Query Posts based on custom field value
- Echo out custom fields in comments
- Display Data From This Custom Media Upload Meta Box?
- Query postmeta values, and return multiple post_titles for common meta value
- When post is updated, custom metadata in text area field is overwritten
- Get custom fields when hover link of post
- Media Attachment Custom Meta Fields not saving in Media Uploader when using jQuery UI Autocomplete
- update_post_meta not working in action hook
- Custom Field: Display only if a specific key is selected outside the loop
- When editing a post with a custom meta box the values aren’t displaying correctly
- Hard Define Custom Field Value
- How can I duplicate “Add Custom Field” with just JavaScript?
- add_post_meta insert null value into Database
- Retrieving custom field as shortcode
- add multiple values (array) to post meta_input
- Site uses wpdb to fetch meta_keys but just displays first meta_key from a page (the post uses the same meta_key “filmmaker” more than once)