我创建了一个链接来连接wordpress中的viber。但这不起作用。
<a href="href='//chat?number=xxxxxxxxxx'"/>xxxxxxxxxx</a>
答案 0 :(得分:0)
在您的主题functions.php(首选子主题)中,使用它来允许“ viber”协议:
add_filter( 'kses_allowed_protocols', function ( $protocols ) {
$protocols[] = 'viber';
return $protocols;
} );