2
私はワードプレスインストールのフッタに<a href="skype:sitspak?call">
を配置しようとしています。ワードプレスにプロトコルを追加
これを達成するために、私はskype
プロトコルをwp_allowed
に追加しています。
以下は、私は私の子供のテーマのfunction.php
//
// Your code goes below
//
function ss_allow_skype_protocol($protocols){
array_push($protocols, 'skype');
return $protocols;
}
add_filter('kses_allowed_protocols' , 'ss_allow_skype_protocol');
しかし、これは動作しません何らかの理由で、次のコードを配置していますfunctions.php
function wp_allowed_protocols() {
static $protocols = array();
if (empty($protocols)) {
$protocols = array('http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet', 'mms', 'rtsp', 'svn', 'tel', 'fax', 'xmpp', 'webcal');
/**
* Filters the list of protocols allowed in HTML attributes.
*
* @since 3.0.0
*
* @param array $protocols Array of allowed protocols e.g. 'http', 'ftp', 'tel', and more.
*/
$protocols = apply_filters('kses_allowed_protocols', $protocols);
}
return $protocols;
からのコードの一部であります;どのように私はそれを達成することができますか?
最初の部分はwp-included/functions.php – Suleman
2番目の部分は子テーマのfunctions.phpにあります – Suleman
私はコア 'functions.php'を修正していません。 – Suleman