Ich glaube ab Version 4.7 war das Problem schonmal, dass WP von sich aus zu allen externen Links das rel="noopener noreferrer" angehängt hat. Damals hatte ich es mit diesem Code in der functions.php hinbekommen, dass WP das nicht mehr eigenständig macht.
Code
// Note that this intentionally disables a tinyMCE security feature.
// Use of this code is NOT recommended.
add_filter('tiny_mce_before_init','tinymce_allow_unsafe_link_target');
function tinymce_allow_unsafe_link_target( $mceInit ) {
$mceInit['allow_unsafe_link_target']=true;
return $mceInit;
}
Der Code steht nach wie vor in der functions.php, jetzt aber mit Wordpress 5.1 kommt dieses noopener wieder!
Bei jedem Speichern wird das einfach angehängt.
Hat jemand schon eine Lösung?