... orderby date
$lastDate = null;
foreach ($posts as $post) {
if ( $post->date !== $lastDate ) {
echo $post->date;
$lastDate = $post->date;
}
// остальной вывод данных
}
/**
* @method Object mainpage()
*/
class Object
{
...
}
select * from table where column2 = $search
union
select * from table where column3 = $search