2014-01-29, 09:03:39
Hi,
I'm relatively new to GS but I'm learning. I stumbled upon my first problem with links. I have a menu consisting of 4 links and I need to link them to their respective pages.
I know you can use:
but I'm currently using a different method because I call each link individually via this code (the variable $menu_1 contains the first item of my menu, I have 3 more):
Now, what do I have to place as the href?
Thx in advance
I'm relatively new to GS but I'm learning. I stumbled upon my first problem with links. I have a menu consisting of 4 links and I need to link them to their respective pages.
I know you can use:
PHP Code:
<?php get_navigation(return_page_slug()); ?>
but I'm currently using a different method because I call each link individually via this code (the variable $menu_1 contains the first item of my menu, I have 3 more):
PHP Code:
<li><a href=""><?php echo $menu_1['slug']; ?></a></li>
Now, what do I have to place as the href?
Thx in advance