添加URL时删除网站http / https

时间:2016-03-24 16:00:10

标签: wordpress url custom-fields

在我的自定义字段中,用户添加其网站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

由于

2 个答案:

答案 0 :(得分:2)

$result

答案 1 :(得分:0)

使用正则表达式:

只是http://或https://

preg_replace(/\w+:\/\//, "", $string);

也是www。

preg_replace(/\w+:\/\/w{3}\./, "", $string);