there's lots of useful conditions to check, but nothing for multipost-page. right now i've got this
if ( is_home() || is_archive() || is_category() ) {
$content = 'multipost';
}
but i'm not sure if this will work for all multipost pages. are there other conditions i should include? or is there a more succinct way of doing this?