BizVectorのヘッダーにある電話番号のところをバナーに変更したい場合には下記のソースをFunctions.phpに挿入してあげれば実現できます。
カスタマイズする際には子テーマのfunctions.php(無ければ新規に作って)に書き込んでくださいね。
[code]
add_filter(‘headContactCustom’,’do_head_contact_custom’);
function do_head_contact_custom($headContact){
$headContact = ‘
ここにバナーのイメージを配置します
‘;
return $headContact;
}[/code]