我正在尝试在'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>
我希望有人可以帮助我。