How to change the menu order of the pages
Closed this issue · 2 comments
parijke commented
If I create a new page I would like to place it in the menu where I like. Now it seems it has some default order.
parijke commented
It is ordered alphabetically I think
public function findMenuItems()
{
return $this->createQueryBuilder('p')
->select('p.title', 'p.slug')
->andWhere('p.show_in_menu = 1')
->orderBy('p.title', 'ASC')
->getQuery()
->getResult();
}
Maybe it is an option to add a weigth paramater to order the menu-items.
Coderberg commented
Menu editor is implemented in version 1.4.0