In my symfony project I'm trying to use wordpress for free user-friendly content manager. My problem is, when I'm trying to take Wordpress menu, like:
$menu = wp_nav_menu( array(
'menu_id' => 'top-menu',
) );
Ofcourse menu items links to URL's like:
/wordpressfolder/page-item
And the point is: how to change it to:
/somethinganother/page-item
?
I want to do that, because I've changed the standard CMS routing, so I need to be consequent, that the project can look professional.
Ofcourse I'dont mind the js option because it's obvious, but I want to do it on server site if it is possible.