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.
$show, $post
Sortie :
@param bool $show Whether to show the checkbox. @param WP_Post $post The current WP_Post object.
// Modifier la valeur avec le filtre 'wp_list_table_show_post_checkbox'
add_filter('wp_list_table_show_post_checkbox', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($show) {
// Modifier la valeur
return $show;
}
Chargement des actualités...