1
0
Fork 0
template/functions/external-link.php
2024-04-25 21:55:08 +02:00

7 lines
No EOL
135 B
PHP
Executable file

<?php
function link_($string, $url) {
return '<a href="'.$url.'" target="_blank" rel="noopener noreferrer">'.$string.'</a>';
}
?>