[Resolved] force open all wordpress blog posts in new tab (target="_blank")

Home Forums Support [Resolved] force open all wordpress blog posts in new tab (target="_blank")

Home Forums Support force open all wordpress blog posts in new tab (target="_blank")

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #612610
    Webmaster

    How can I force open each WordPress post in new tab/window?

    Is there a function or php snippet I can add to force open all blog posts in new tabs? I was hoping to avoid having to edit the theme (or create a child theme) files or use a plugin.

    Thanks for your attention to detail,

    #612849
    Tom
    Lead Developer
    Lead Developer

    You could do something like this: https://stackoverflow.com/questions/9936909/how-to-open-each-wordpress-post-in-new-tab-window/32640958#32640958

    Just replace:

    $('a').each(function() {

    With:

    $('h2.entry-title a').each(function() {

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.