LoginSignup
0
0

More than 1 year has passed since last update.

xeory_baseのfont-awesomeをバージョン更新する

Posted at

概要

WordPressのテンプレート「xeory_base」にて、デフォルトでfont-awesomeが組み込まれてるが、バージョン4.5.0なので古い。

バージョン6.1.1のCDNを使うように修正する。

修正箇所

lib/functions/asset.php
add_action('wp_enqueue_scripts', 'bzb_add_awesome_style', 9);
function register_awesome_font(){
//   wp_register_style( 'font-awesome', get_template_directory_uri() . '/lib/fonts/font-awesome-4.5.0/css/font-awesome.min.css');
  wp_register_style( 'font-awesome', 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css');
}

リンク

バズ部のテンプレート「xeory_base」
https://xeory.jp/

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0