コード例 #1
0
					<?php 
if (!empty($order_rooms)) {
    foreach ($order_rooms as $room) {
        echo esc_html($room['rooms'] . ' ' . get_the_title($room['room_type_id'])) . '<br>';
    }
}
?>
				</td>
			</tr>
			<tr>
				<td><strong><?php 
echo esc_html__('Nights', 'citytours');
?>
</strong></td>
				<td><?php 
echo ct_get_day_interval($order_data['date_from'], $order_data['date_to']);
?>
</td>
			</tr>
			<tr>
				<td><strong><?php 
echo esc_html__('Adults', 'citytours');
?>
</strong></td>
				<td><?php 
echo esc_html($order_data['total_adults']);
?>
</td>
			</tr>
			<tr>
				<td><strong><?php 
コード例 #2
0
ファイル: cart.php プロジェクト: danipolo/agroturismomenorca
            foreach ($cart_rooms as $room_id => $room_data) {
                echo esc_html($room_data['rooms'] . ' ' . get_the_title($room_id)) . '<br>';
            }
        }
        ?>
							</td>
						</tr>
						<tr>
							<td>
								<?php 
        echo esc_html__('Nights', 'citytours');
        ?>
							</td>
							<td class="text-right">
								<?php 
        echo ct_get_day_interval($date_from, $date_to);
        ?>
							</td>
						</tr>
						<tr>
							<td><?php 
        echo esc_html__('Adults', 'citytours');
        ?>
</td>
							<td class="text-right"><?php 
        echo esc_html($cart->get_field($uid, 'total_adults'));
        ?>
</td>
						</tr>
						<tr>
							<td><?php