<?php
printf( t('Published by %1$s, %2$s'),
$this->_helper('user')->link( $article['author'] ),
$this->_date->format( $article['date'] )
);
?>
<?php
$user = $this->_ugmanager->getUser( $article['author'] );
if ( $user['first_name'] ) {
$name = rtrim( $user['first_name'].' '.$user['surname'] );
} else {
$name = $this->_helper('user')->link( $article['author'] )
}
?>
It looks like you're new here. If you want to get involved, click one of these buttons!