Removed 'Meta:' leader from the_meta().
git-svn-id: http://svn.automattic.com/wordpress/trunk@991 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
867f87f41b
commit
ea9cc3ff81
|
@ -473,7 +473,7 @@ function the_meta() {
|
|||
global $id, $post_meta_cache;
|
||||
|
||||
if ($keys = get_post_custom_keys()) {
|
||||
echo "<strong>Meta:</strong><ul>\n";
|
||||
echo "<ul>\n";
|
||||
foreach ($keys as $key) {
|
||||
$values = array_map('trim',$post_meta_cache[$id][$key]);
|
||||
$value = implode($values,', ');
|
||||
|
@ -484,4 +484,4 @@ function the_meta() {
|
|||
}
|
||||
}
|
||||
|
||||
?>
|
||||
?>
|
Loading…
Reference in New Issue