This site uses cookies. By continuing to browse the site you are agreeing to our use of cookies.
Open all links in new windows, WordPress add target blank in all (a) HTML tags.
I am personally not a fan of opening links in new windows ā I think it should be left for the user to decide. But Iām not one to judge, so if you want to do it, use this simple code snippet on your WordPress theme’s functions.php file.
WordPress code snippet:
/** * * Add target blank in all a html elements */ if ( ! function_exists( 'ns_auto_blank' ) ) { function ns_auto_blank( $text ) { $return = str_replace( '<a', '<a target="_blank" ', $text ); return $return; } add_filter( 'the_content', 'ns_auto_blank' ); }
Find out more about functions here
Thank you for seeing my tutorial and feel free to share and comment :). Do you have a code snippet and you want to see it published on my site? I will be more than happy to do it please send me a message (here)