filtrod 5.7.0
wp_list_table_show_post_checkbox
Opis — z kodu źródłowego
Filters whether to show the bulk edit checkbox for a post in its list table.
By default the checkbox is only shown if the current user can edit the post.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$show | bool | Whether to show the checkbox. |
$post | \WP_Post | The current WP_Post object. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_list_table_show_post_checkbox', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_list_table_show_post_checkbox', 'twoja_funkcja', 10, 2 );
function twoja_funkcja($param_1, $param_2) {
// Twój kod
}Popularne w tej kategorii