Здравствуйте, как сделать, чтобы чекбоксы сохранялись при обновлении страницы
function lft_hotel_section_callback( $post, $meta ){
$screens = $meta['args'];
wp_nonce_field( plugin_basename(__FILE__), 'lft_noncename' );
// echo '<input type="text" id= "lft_new_field" name="lft_new_field" value="' . get_post_meta( $post->ID, '_my_meta_value_key', true ) . '" size="25" />';
$args = array(
'numberposts' => 0,
'post_type' => 'hotel'
);
$catPosts = get_posts($args);
echo '<form method="POST">';
foreach ($catPosts as $singlePost) {
echo '<input type="checkbox" id="lft_checkbox" name="lft_checkbox">'.$singlePost->post_title.'</input>';
};
echo '</form>';