如何在Wordpress中链接viber用户页面?

时间:2018-09-18 07:45:48

标签: html wordpress

我创建了一个链接来连接wordpress中的viber。但这不起作用。

<a href="href='//chat?number=xxxxxxxxxx'"/>xxxxxxxxxx</a>

1 个答案:

答案 0 :(得分:0)

在您的主题functions.php(首选子主题)中,使用它来允许“ viber”协议:

add_filter( 'kses_allowed_protocols', function ( $protocols ) {
   $protocols[] = 'viber';
   return $protocols;
} );