0 down vote favorite Is it possible to navigate on the same page with wordpress menus ? lets say i have only one very long wordpress post and want to navigate on the same page by clicking the wordpress menus ?
I don't understand the question too good. Do you want to use WordPress menu like a "Up" and "Down" buttons? , so when clicking menu button to go to that post bottom?
You can probably do this by giving the needed parts some ids and then replacing WordPress menu tab url with #section_id , where "section_id" will be the name given to wanted section.
Hi surimaribo - yes, I want to remember how to do this now and again, but it's so rare that when I want to do it I have forgotten exactly how to, so I made myself some notes which I keep handy. Here are mine: "Wordpress - link to another page, half way down Add target: <div id="link-some-text">Some text</div> or <h2 id="some-text">Heading of some sort</h2> Then the link will be either #link-some-text if on the same page (using the WP link box), or http://site.com/page-url#link-some-text If you are linking to a particular spot on a different page than the one you're linking from, then you also need to add the page slug to the anchor. So let's say your bios page is http://www.myblog.com/bios/ Your anchor link will look like: <a href="/bios#link-some-text">See some text</a> ...or enter /bios#heatherbio in the link pop-up." Hopefully it makes sense! There is a bit of editing the code there but, basically, WP does not make this easy for you right now. In future no doubt this will be improved. Good luck! Malc