Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #273180

    Hi there,

    I´d like to open the default RSS feed link that I added to my header (Header Layout > Social Icons function) in a new window/tab. How can I do that in a child theme?

    Thanks
    Michael

    #273184

    Hey Michael!

    Please add following code to Functions.php file of your child theme in Appearance > Editor

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

    Best regards,
    Yigit

    #273185

    Rock ´n Roll! Works great.

    Thanks
    Michael

    #273187

    Hey!

    You are welcome Michael, always glad to help!

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Open basic RSS feed link in new window/tab’ is closed to new replies.