• I want to know that how i can do hyperlink generation in wordpress i.e
    when i click on a link and it just scroll me down to the particular topic / title

Viewing 7 replies - 1 through 7 (of 7 total)
  • If I understand the question, here is the HTML:

    <a href="#this-is-the-id">Scroll to a certain place</a>

    Then this for the place you want to scroll to:

    <div id="this-is-the-id">text</div>

    Thread Starter someshl

    (@someshl)

    how to create and found an id ? for that particular post title
    like h1, h2,..h3

    If you want to have the page scroll down to a certain location on the page, both the HTML <a> tag and the tag you want to scroll to (<h1>) should both reference an ID.

    You can add an ID to a <h1> tag by adding this to the <h1> tag:

    <h1 id="this-is-the-id">Title</h1>

    Thread Starter someshl

    (@someshl)

    So id could be numeric or alphabet

    Correct.

    Just about any HTML tag can have an id. You just need to add the id="this-is-the-id" to the HTML tag.

    Thread Starter someshl

    (@someshl)

    not working !
    can you send me an working example

    Thread Starter someshl

    (@someshl)

    anyone please

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘How to do "Hyperlink" Generation in wordpress ?’ is closed to new replies.