list_meta [ WordPress Function ]
list_meta ( $meta )
| Parameters: |
|
| Defined at: |
|
{@internal Missing Short Description}}
Source
<?php
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" class="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' class='list:meta'>
<?php
foreach ( $meta as $entry )
echo _list_meta_row( $entry, $count );
?>
</tbody>
</table>
<?php
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- PHPXRef 0.7 : WordPress : Function Reference: list_meta()
Function and Method Cross Reference. list_meta(). Defined at: /wp-admin/ includes/template.php -> line 406. Referenced 1 times: ...
phpxref.ftwr.co.uk - list_meta (WordPress Function) - WPSeek.com
WordPress lookup for list_meta, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - Help:List - Meta
Apr 21, 2012 ... wikitext, rendering. * Lists are easy to do: ** start every line * with a star ** more stars mean *** deeper levels. Lists are easy to do: start every ...
meta.wikimedia.org - Popular Deleted Questions list - Meta Stack Overflow
Use this query and just go down the list. It should work until the next data dump. Actually, now that I look at it, some of those questions need to be migrated or ...
meta.stackoverflow.com