Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #354968

    Blog Grid: how can i make the posts (or even better posts marked as links) open in a new window?

    #355320

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.