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:1039WP_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 ) ) : ?> <input id="cb-select-<?php the_ID(); ?>" type="checkbox" name="post[]" value="<?php the_ID(); ?>" /> <label for="cb-select-<?php the_ID(); ?>"> <span class="screen-reader-text"> <?php /* translators: %s: Post title. */Introduced in 5.7.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.