• Hello,

    Need some help if there is any solution where all my post links in the index page will open a new page? (not an external links). Is there any plugin or scripts to add on wordpress?

    ty

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can usually make that happen by editing the theme file. Your index.php should have something like this in it:

    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a>

    You can just add target="_blank" to the link like you would on any web page.

    If the index.php file is used for more than one type of page you can use a Conditional Tag to make it only happen on the home page.

    Thread Starter jsabelino

    (@jsabelino)

    ahh tnx

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Posts link to open new page’ is closed to new replies.