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?
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
Thank you Ismael.