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 |
---|---|
1004 | * Filters whether to show the bulk edit checkbox for a post in its list table. |
1005 | * |
1006 | * By default the checkbox is only shown if the current user can edit the post. |
1007 | * |
1008 | * @since 5.7.0 |
1009 | * |
1010 | * @param bool $show Whether to show the checkbox. |
1011 | * @param WP_Post $post The current WP_Post object. |
1012 | */ |
1013 | if ( apply_filters( 'wp_list_table_show_post_checkbox', $show, $post ) ) : |
1014 | ?> |
1015 | <label class="screen-reader-text" for="cb-select-<?php the_ID(); ?>"> |
1016 | <?php |
1017 | /* translators: %s: Post title. */ |
1018 | printf( __( 'Select %s' ), _draft_or_post_title() ); |
1019 | ?> |
1020 | </label> |
1021 | <input id="cb-select-<?php the_ID(); ?>" type="checkbox" name="post[]" value="<?php the_ID(); ?>" /> |
1022 | <div class="locked-indicator"> |