# subscription/1.3.0/includes/Admin/views/subscription-info.php

Subscriptions for WooCommerce with Stripe Recurring Payments, version 1.3.0. 13 lines.

- Page: https://pluginprobe.com/plugins/subscription/1.3.0/code/includes/Admin/views/subscription-info.php
- Raw: https://pluginprobe.com/plugins/subscription/1.3.0/raw/includes/Admin/views/subscription-info.php
- Modified: 2025-04-21T13:21:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/subscription/1.3.0/code/includes/Admin/views/subscription-info.php#L10-L20`.

```php
<table class="form-table">
	<tbody>
		<?php foreach ( $rows as $key => $value ) : ?>
		<tr>
			<th scope="row"><?php echo esc_html( $value['label'] ); ?>: </th>
			<td>
				<?php echo wp_kses_post( $value['value'] ); ?>
			</td>
		</tr>
		<?php endforeach; ?>
	</tbody>
</table>

```
