var data = {'1': 'one data', '2': 'two data'}; //получившийся json из массива в php
$('button').click(function(){
var id = $(this).attr('id');
var value = data[id] ? data[id] : 'empty';
alert(value);
});
<?php $the_query = new WP_Query('page_id=128'); ?>
<?php while ($the_query->have_posts() ) : $the_query->the_post(); ?>
<?php if(get_field('sizes')): ?>
<?$cnt = 0;?>
<?php while(has_sub_field('sizes')): ?>
<label for="r<?=(++$cnt);?>">
<?php endwhile; ?>
<?php endif; ?>
<?php endwhile; ?>
<?php wp_reset_postdata();?>