add_shortcode( 'my_price_1', 'my_price_1' );
function my_price_1( ) {
$my_price = '';
$name = get_field('name_2', 'option');
$price = get_field('price_2', 'option');
$my_price .= '<table style="width:100%">';
$my_price .= '<tr> <td>'. $sub_name.'</td><td>'. $sub_price.'</td></tr>';
$my_price .= '</table>';
return $my_price;
}