How can I manually create internal links (what is the code) on my wordpress blog, without the use of any plugins?
Hi, If you're looking for the actual HTML for creating hyperlinks: <a href="THE WEB ADDRESS OF YOUR INTERNAL LINK HERE">THE ANCHOR TEXT FOR THE LINK HERE</a> I use Wordpress too, when I want to create a link while I'm writing: - In the 'Visual' mode, copy and paste the full address of the page you want to link to; - Click on 'HTML' mode, and you will see the actual HTML code, similar to the code above; - Change the part in red above; - Go back to 'Visual' mode and voila!! Hope that's what you were asking!! Cheers, John.
Aryans, John and rakeshraushan: Thanks for making internal linking a "no-sweat" thing for me..I didn't realize it was that easy..
<a href="web page url here" title="webpage minor description here">anchor text here</a> You can also use the following inside the <a href > - rel="nofollow" (Prevent passing link juice) - target="_blank" (Opens link in a new window instead of the current one)