'.
'';
// If in a search, 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.
if ( is_search() )
{
echo
'
'.
apply_filters( 'the_excerpt', get_the_excerpt() ).
'
';
}
else
{
echo
''.
apply_filters( 'the_content', get_the_content() ).
'
';
}
// End article - no footer.
echo
'';
// Post-content.
do_action( 'action_bpq_article_after' );
?>