'.
'';
// If in a search/archive (or any page that shows multiple posts), just show excerpts.
// Otherwise, default to showing the full articles. Note that the get_the_content call
// does respect the 'more tag' and will trim the article if it comes across one while in
// an archive. It will leave the article in full on singles and the front page.
if ( ( is_search() || is_archive() ) && get_option( 'rss_use_excerpt' ) )
{
echo
'
'.
apply_filters( 'the_excerpt', get_the_excerpt() ).
'
';
}
else
{
echo
'
'.
apply_filters( 'the_content', get_the_content() ).
'
';
}
// Put together the postmeta into a single line.
echo
''.
'