WP HOOKS
filtrod 5.7.0

wp_list_table_show_post_checkbox

Args 2Plik wp-admin/includes/class-wp-posts-list-table.phpDokumentacja WP ↗

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

ParametrTypOpis
$showboolWhether to show the checkbox.
$post\WP_PostThe 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
}

Popularne w tej kategorii