skip to Main Content

I’m using Hoot Business Theme, i can’t find where I can insert target_blank" there is no loop.php in this theme. Is there any other way to open wordpress post in new tab?

2

Answers


  1. The simplest way to achieve this without messing about in your template files is with jQuery:

    $('a.addSomethingBlogSpecificHere').attr('target','_blank');
    
    Login or Signup to reply.
  2. You need to add target="_blank" in anchor tag HTML like :

    <a href="#"  target="_blank" > Label Name </a>
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search