I'm trying to query a post type by meta value, but the value is [0] field in array.
$args = array('post_type'=>'event','meta_query' => array(
array(
'key' => 'my_post_multicheckbox',
// The right value should be my_post_multicheckbox[0]
// and it's serialized
'value' => serialize($current_post_ID)
)
));
$events = new WP_Query($args);
while ($events->have_posts()):$events->the_post();
the_title();
endwhile;
wp_reset_query();
Obviously it does not show any post, any idea?