Ok, i did it, i created a custom field, and insteted the <?php the_meta(); ?> i "created" a new function the_meta2(); because the default one is with <ul > and <li >
the default one:
function the_meta() {
if ( $keys = get_post_custom_keys() ) {
echo "<ul class='post-meta'>\n";
foreach ( $keys as $key ) {
$keyt = trim($key);
if ( '_' == $keyt{0} )
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 "\n";
}
}
my function:
function the_meta2() {
if ( $keys = get_post_custom_keys() ) {
foreach ( $keys as $key ) {
$keyt = trim($key);
if ( '_' == $keyt{0} )
continue;
$values = array_map('trim', get_post_custom_values($key));
$value = implode($values,', ');
echo apply_filters('the_meta_key', "<span class='post-meta-key'>$key:</span> $value\n", $key, $value);
}
}
}
Thanks for the support!