'.
'';
// Some pages should show excerpts - others full content.
if ( should_use_excerpt() )
{
echo
'
'.
'
'.
apply_filters( 'the_excerpt', get_the_excerpt() ).
'
'.
'
';
}
else
{
echo
''.
'
'.
apply_filters( 'the_content', get_the_content() ).
'
'.
'
';
}
// End the elements.
echo
'';
// Post-content.
do_action( 'action_bpq_article_after' );
?>