2 yabba Jan 07, 2005 12:11

I believe that call to the_author is deprecated.
$Item->Author->prefered_name() is the way to access author through the Item object.
<title>
<?php
$Item->prefered_name();
echo T_(' - ') ;
$Item->title( '', '', false, 'xml' );
?>
</title>
mattbta wrote:
I believe that call to the_author is deprecated.
My bad, just found a comment to that effect in one of the files :roll:
No need for the rolleyes. I was just mentioning it for future reference. At some point in time, future releases will stop supporting deprecated calls and those functions won't exist anymore. Just trying to help. :D
Thanks guys :)
Look for this line in your rss pages :-
<title><?php $Item->title( '', '', false, 'xml' ) ?></title>
and change it to :-
<title><?php
echo the_author()," - ";
$Item->title( '', '', false, 'xml' );
?></title>
it appears to do what you want