Checkboxes (posts)

See Text field for complete documentation.

$box = new Cuztom_Meta_Box( $id, $title, $post_type, array(
        
    array(
        'id'    => '_data_post_checkboxes',
        'type'  => 'post_checkboxes',
        'label' => 'Field Label',
        'args'  => array(
            'post_type' => 'post',
        ),
    ),

    ...

) );