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

    Hey,

    Is it possible to add “target=new” ro links in Enfold latest news widget through child functions.php?

    Thanks

    #389344

    Hey axelfx07!

    Please add following code to Functions.php file

    function add_custom_target(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('.newsbox a').attr('target','_blank');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_target');

    Best regards,
    Yigit

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