WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 1020 | * Filters whether to show the bulk edit checkbox for a post in its list table. |
| 1021 | * |
| 1022 | * By default the checkbox is only shown if the current user can edit the post. |
| 1023 | * |
| 1024 | * @since 5.7.0 |
| 1025 | * |
| 1026 | * @param bool $show Whether to show the checkbox. |
| 1027 | * @param WP_Post $post The current WP_Post object. |
| 1028 | */ |
| 1029 | if ( apply_filters( 'wp_list_table_show_post_checkbox', $show, $post ) ) : |
| 1030 | ?> |
| 1031 | <label class="label-covers-full-cell" for="cb-select-<?php the_ID(); ?>"> |
| 1032 | <span class="screen-reader-text"> |
| 1033 | <?php |
| 1034 | /* translators: %s: Post title. */ |
| 1035 | printf( __( 'Select %s' ), _draft_or_post_title() ); |
| 1036 | ?> |
| 1037 | </span> |
| 1038 | </label> |