1 orta Jan 05, 2005 20:10
3 mattbta Jan 07, 2005 15:25
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>
4 yabba Jan 07, 2005 15:45
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:
5 mattbta Jan 07, 2005 16:09
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
6 orta Jan 09, 2005 02:32
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