the_meta [ WordPress Function ]
the_meta ( No parameters )
| Uses: | |
| Defined at: |
|
Display list of post custom fields.
Source
<?php
function the_meta() {
if ( $keys = get_post_custom_keys() ) {
echo "<ul class='post-meta'>\n";
foreach ( (array) $keys as $key ) {
$keyt = trim($key);
if ( is_protected_meta( $keyt, 'post' ) )
continue;
$values = array_map('trim', get_post_custom_values($key));
$value = implode($values,', ');
echo apply_filters('the_meta_key', "<li><span class='post-meta-key'>$key:</span> $value</li>\n", $key, $value);
}
echo "</ul>\n";
}
}
?>
Examples [ wp-snippets.com ]
Google Arama Sonuçlarý
- Function Reference/the meta « WordPress Codex
It must be used from within The Loop or in a theme file that handles data from a single post (e.g. single.php). the_meta() will ignore meta_keys (i.e. field names) ...
codex.wordpress.org - WordPress › Support » the_meta WORKS, get_post_meta does not
Extensive searching and tweaking failed to make this work. I'm trying to pull one custom field value into a post (the same post that has the custom field).
wordpress.org - Meta - Red vs. Blue Wiki - Wikia
The Meta, formerly known as Freelancer Agent Maine, was a rogue Freelancer agent with goals to obtain armor enhancements and artificial intelligence to ...
rvb.wikia.com - Learn how to use Wordpress Custom Fields | Kriesi.at - Wordpress ...
Jul 9, 2008 ... <?php the_meta(); ?> This is the easiest way to display the data. The template tag automatically puts the entire meta-data into a CSS style ...
www.kriesi.at
Kullanýcý Tartýþmalarý [ wordpress.org ]
- Erfo on "How modify function the_meta"
- fonglh on "How modify function the_meta"
- Erfo on "How modify function the_meta"
- supernovia on "process_flickr_shortcode in the_meta"
- supernovia on "process_flickr_shortcode in the_meta"
- PeterPAP on "where to add the_meta in the twentyten theme"
- Christine on "where to add the_meta in the twentyten theme"
- PeterPAP on "where to add the_meta in the twentyten theme"
- Christine on "where to add the_meta in the twentyten theme"
- PeterPAP on "where to add the_meta in the twentyten theme"