LoginSignup
1
1

More than 5 years have passed since last update.

WordPressの絵文字出力のJavaScript,CSSを非表示にする

Last updated at Posted at 2017-05-13

WordPressのheadタグ内にデフォルトで出力される絵文字出力のjs,cssを削除するには functions.php に以下を追記する。

functions.php
remove_action( 'wp_head', 'print_emoji_detection_script', 7 );
remove_action( 'admin_print_scripts', 'print_emoji_detection_script' );
remove_action( 'wp_print_styles', 'print_emoji_styles' );
remove_action( 'admin_print_styles', 'print_emoji_styles' );
1
1
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
1
1