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:
parent
391c91d78b
commit
4f49a4163d
|
@ -473,7 +473,7 @@ function the_meta() {
|
||||||
global $id, $post_meta_cache;
|
global $id, $post_meta_cache;
|
||||||
|
|
||||||
if ($keys = get_post_custom_keys()) {
|
if ($keys = get_post_custom_keys()) {
|
||||||
echo "<strong>Meta:</strong><ul>\n";
|
echo "<ul>\n";
|
||||||
foreach ($keys as $key) {
|
foreach ($keys as $key) {
|
||||||
$values = array_map('trim',$post_meta_cache[$id][$key]);
|
$values = array_map('trim',$post_meta_cache[$id][$key]);
|
||||||
$value = implode($values,', ');
|
$value = implode($values,', ');
|
||||||
|
|
Loading…
Reference in New Issue