用PHP the_author_meta替换Wordpress中的文本

时间:2013-10-30 17:07:24

标签: php wordpress replace preg-replace str-replace

我正在尝试在'the_author_meta'中执行'preg_replace'。

在第一个例子中不起作用。

$string = the_author_meta( 'phone', 1 );
preg_replace('/\s|\-+/', '', $string);

现在可行。

echo preg_replace('/\s|\-+/', '', "+55 12 0000-0000");

但电话号码是动态显示的,即用户的自定义面板。

我会将数字放在href =“tel:without space and hyphen”

<a href="tel:+551200001234">+55 12 0000-1234</a>

我希望有人可以帮助我。

0 个答案:

没有答案