wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



list_meta › WordPress Function

Desde1.2.0
Obsoleton/a
list_meta ( $meta )
Parâmetros:
  • (array[]) $meta An array of meta data arrays keyed on 'meta_key' and 'meta_value'.
    Required: Yes
Definido em:
Codex:

Outputs a post's public meta data in the Custom Fields meta box.



Fonte

function list_meta( $meta ) {
	// Exit if no meta.
	if ( ! $meta ) {
		echo '
<table id="list-table" style="display: none;">
	<thead>
	<tr>
		<th class="left">' . _x( 'Name', 'meta name' ) . '</th>
		<th>' . __( 'Value' ) . '</th>
	</tr>
	</thead>
	<tbody id="the-list" data-wp-lists="list:meta">
	<tr><td></td></tr>
	</tbody>
</table>'; // TBODY needed for list-manipulation JS.
		return;
	}
	$count = 0;
	?>
<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
}