/*
Theme Name: Uncode Child
Description: Child theme for Uncode theme
Author: Undsgn™
Author URI: http://www.undsgn.com
Template: uncode
Version: 1.0.0
Text Domain: uncode
*/


/* open external link in a new tab */

add_action('wp_footer','all_externe_link_target_blank');
function all_externe_link_target_blank(){ 
  echo '<script type="text/javascript">
    jQuery(function($){
      $(\'a:not([href*="\'+document.location.host+\'"])\')
        .filter(\':not([href^="/"])\')
        .filter(\':not([href^="#"])\')
        .filter(\':not([href^="javascript"])\')
        .attr("target","_blank");
      $(\'a[href$=".pdf"]\').attr("target","_blank");
    });
  </script>';
}