In one of my PHP script I have a hyper link html code as follows and it is working fine. How can I modify this codes to have a new target frame?
Read the <a target="_blank" href="<?php the_syndication_permalink(); ?>">Full Article</a> The above should do it. Bye
If you are working with frame <a target="framename" href="<?php the_syndication_permalink(); ?>">Full Article</a> where framename is the name of the frame you want the new page to appear if you use the target="_Blank" it will just open the page in new window
<a href="<?php the_syndication_permalink(); ?>" target="_blank">Full Article</a> Is the correct code..