web-dev-qa-db-fra.com

ouverture de liens dans un nouvel onglet avec - add_filter ('the_content', 'make_clickable');

Le code suivant dans function.php fonctionne bien pour rendre les liens cliquables,

add_filter( 'the_content', 'make_clickable',    12 );

Mais puis-je faire les liens pour ouvrir dans un nouvel onglet?

3
anandmongol

Je ne sais pas s'il existe une fonction native pour cela, mais un peu de regex pourrait aider le cas:

function open_links_in_new_tab($content){
    $pattern = '/<a(.*?)?href=[\'"]?[\'"]?(.*?)?>/i';

    $content = preg_replace_callback($pattern, function($m){
        $tpl = array_shift($m);
        $hrf = isset($m[1]) ? $m[1] : null;

        if ( preg_match('/target=[\'"]?(.*?)[\'"]?/i', $tpl) ) {
            return $tpl;
        }

        if ( trim($hrf) && 0 === strpos($hrf, '#') ) {
            return $tpl; // anchor links
        }

        return preg_replace_callback('/href=/i', function($m2){
            return sprintf('target="_blank" %s', array_shift($m2));
        }, $tpl);

    }, $content);

    return $content;
}

add_filter('the_content', 'open_links_in_new_tab', 999);

Les modèles pourraient avoir besoin d'un peu d'amélioration. J'espère que cela pourra aider!

4
Samuel Elh