在我的自定义字段中,用户添加其网站URls。我想显示它们就像这个example.com而不是http // example.com /。我想删除http / https。这仅用于显示目的。
<?php
$site = get_user_meta( $current_user->ID, 'url', true );
echo '<a class="user-website" href="'.$site.'">'.$site.'</a>';
?>
显示时,它会在链接中显示整个网址http://example.com。我想删除协议并显示为example.com
由于
答案 0 :(得分:2)
$result
答案 1 :(得分:0)
使用正则表达式:
只是http://或https://
preg_replace(/\w+:\/\//, "", $string);
也是www。
preg_replace(/\w+:\/\/w{3}\./, "", $string);