Removed 'Meta:' leader from the_meta().

git-svn-id: https://develop.svn.wordpress.org/trunk@991 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dougal Campbell 2004-03-24 14:41:05 +00:00
parent 391c91d78b
commit 4f49a4163d
1 changed files with 2 additions and 2 deletions

View File

@ -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() {
}
}
?>
?>