Archived topic
force open all wordpress blog posts in new tab (target="_blank")
1 reply · Started by Webmaster on July 1, 2018
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,
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() {