?>
<table id="list-table">
<thead>
<tr>
<th class="left"><?php
_ex( 'Name', 'meta name'
); ?></th>
<th><?php
_e( 'Value'
); ?></th>
</tr>
</thead>
<tbody id='the-list' data-wp-lists='list:meta'>
<?php
foreach ( $meta as $entry ) { echo _list_meta_row( $entry,
$count );
} ?>
</tbody>
</table>
<?php
}/**
* Outputs a single row of public meta data in the Custom Fields meta box.
*
* @since 2.5.0
*
* @param array $entry An array of meta data keyed on 'meta_key' and 'meta_value'.
* @param int $count Reference to the row number.
* @return string A single row of public meta data.
*/