wp_list_table_show_post_checkbox

FILTER wp-admin\includes\class-wp-posts-list-table.php (ligne 1039) github
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.

Paramètres

Entrée :
$show, $post
Sortie :
@param bool    $show Whether to show the checkbox.
@param WP_Post $post The current WP_Post object.

Utilisation

// 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;
}

Actualités

Chargement des actualités...