Open the post (Link) and a tab (New Link) with one click

jason212

Power Member
Joined
Feb 21, 2015
Messages
645
Reaction score
99
Hey guys,

I have a tube site and I want to change my code. If I click on one video it should be open and another tab (with the link which I addded) too. The link can stay in the code. This code is from loop-content.php I hope its right.

Here is my code.


<?php global $loop_view;
$ajaxload = get_option('dp_archive_ajaxload');
?>

<div class="loop-content switchable-view <?php echo $loop_view; ?>" data-view="<?php echo $loop_view; ?>" data-ajaxload=<?php echo $ajaxload; ?>>
<div class="nag cf">
<?php while (have_posts()) : the_post();
get_template_part('item-video');
endwhile; ?>
</div>
</div><!-- end .loop-content -->

greets
 
Back
Top