
The code involved to make it happen
- When in your WordPress Editor you need to find the place where you want your link to be and place some code as shown below, this is called an anchor.
<a href="#cookie">cookie</a>
- You have to take note what you have called your anchor (#cookie) and find the place you want the link to jump to.
- When you have located where you want the link to jump, you place this piece of code just before the word. The ‘name’ has to be the same name as your anchor.
<a name="cookie"</a>
