I fond this code in a theme called Q2AStack... Hope this could help :)
function post_meta($post, $class, $prefix=null, $separator='<BR/>')
{
if(($this->template == 'question' && $class !='qa-c-item') || $this->template == 'questions') {
$this->output('<div CLASS="'.$class.'-meta-div">');
$separator='</div><div CLASS="'.$class.'-meta-div-2">';
if(isset($post['who'])) {
$post['who']['prefix'] = '<br/>';
$post['who']['data'] .= '<br/>';
}
if(isset($post['who_2'])) {
$post['who_2']['prefix'] = '<br/>';
$post['who_2']['data'] .= '<br/>';
}
if(isset($post['who']['points'])) {
$post['who']['title'] = @$post['who']['title'] . '</span>'.(isset($post['who']['title'])?' ':'').'<span class="'.$class.'-who-points-data">'.$post['who']['points']['data'];
unset($post['who']['points']);
}
qa_html_theme_base::post_meta($post, $class, $prefix, $separator);
$this->output('</div>');
}
else qa_html_theme_base::post_meta($post, $class, $prefix, $separator);
return;
$this->output('<SPAN CLASS="'.$class.'-meta">');
if (isset($prefix))
$this->output($prefix);
$order=explode('^', @$post['meta_order']);
foreach ($order as $element)
switch ($element) {
case 'what':
$this->post_meta_what($post, $class);
break;
case 'when':
$this->post_meta_when($post, $class);
break;
case 'where':
$this->post_meta_where($post, $class);
break;
case 'who':
$this->post_meta_who($post, $class);
break;
}
$this->post_meta_flags($post, $class);
if (!empty($post['when_2'])) {
$this->output($separator);
foreach ($order as $element)
switch ($element) {
case 'when':
$this->output_split($post['when_2'], $class.'-when');
break;
case 'who':
$this->output_split(@$post['who_2'], $class.'-who');
break;
}
}
$this->output('</SPAN>');
}