Blog Grid: how can i make the posts (or even better posts marked as links) open in a new window?
Hi totalcy!
Please add following code to Functions.php file in Appearance > Editor
function add_custom_grid_target(){
?>
<script>
jQuery(window).load(function(){
jQuery('.avia-content-slider-inner a').attr('target','_blank');
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_grid_target');
Best regards,
Yigit