Filters whether to show the bulk edit checkbox for a post in its list table.
$showbool$postWP_Postwp-admin/includes/class-wp-posts-list-table.php:1073WP_Posts_List_Table::column_cb() * * @since 5.7.0 * * @param bool $show Whether to show the checkbox. * @param WP_Post $post The current WP_Post object. */ if ( apply_filters( 'wp_list_table_show_post_checkbox', $show, $post ) ) : $post_title = _draft_or_post_title(); // If the post has no title, try adding part of the excerpt. $no_title_excerpt = $this->get_no_title_excerpt( $post ); if ( '' !== $no_title_excerpt ) {Introduced in 5.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.