Tagged: , ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #525153

    Hello, I’m using my news block post (LINK format). How to put to open the link in a new window?

    Replacing the link of the image in the news?
    How to put a color in the news thumb?

    My site
    http://www.andrebrito.com.br/ab2/blog/publicacoes/

    #525961

    Hi mleite1!

    Thank you for using Enfold.

    Please add this in the functions.php file:

    // target blank
    function add_custom_script(){
    ?>
    <script>
    (function($) {
    	$('.av-masonry-entry.post_format-post-format-link').each(function() {
    		$(this).attr('target', '_blank');
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');
    

    Remove browser cache then reload the page.

    Best regards,
    Ismael

    #525985

    Thank you Ismael.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘POST LINK FORMAT NEW WINDOW’ is closed to new replies.