• Dose anyone know of a WP plugin that has a list of post titles on the page and by clicking on a title it will bring up that post inside an iframe on the same page?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Moderator Steven Stern (sterndata)

    (@sterndata)

    Volunteer Forum Moderator

    It seems to me that you’d do something like this with jQuery and open the post inside an otherwise hidden div.

    but why? it seems to me that you’re effectively stripping posts of their own URLs and thus messing with SERP and such.

    Thread Starter Vern Southern

    (@vernsouthern)

    @sterndata wrote “but why?”

    It is a design request from a client. I would like to use something native to WP. Any plugin that comes close would be helpful.

    I tried to search for it in WP plugins but my searches come up with thousands of results. I cannot figure out how to narrow down the search.

    Thread Starter Vern Southern

    (@vernsouthern)

    Created this code, not very elegant but it works

    <div style="float: left; width: 300px;">
    <a href="https://www.example.com/on-second-thoughts/" target="myiframe">On second thoughts</a><br />
    <a href="https://www.example.com/you-lived-before-you-met-me/" target="myiframe">You lived before you met me?!</a><br />
    <a href="https://www.example.com/what-could-possibly-go-wrong/"target="myiframe"> What could possibly go wrong?</a><br />
    </div>
    <div style="float: left; width: 630px;">
    <iframe name="myiframe" style="float: left; width: 600px;"></iframe>
    </div>

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Click on Post Title Brings Up Post in iFrame’ is closed to new replies.