functions.phpに書き込む
HEAD関連
// titleタグ add_theme_support( 'title-tag' ); // 絵文字機能削除 remove_action('wp_head', 'print_emoji_detection_script', 7); remove_action('wp_print_styles', 'print_emoji_styles'); // コメントフィード削除 remove_action('wp_head', 'feed_links_extra', 3); // ワードプレスのバージョン表示削除 remove_action('wp_head', 'wp_generator'); // ブログ投稿ツールは使用しない remove_action('wp_head', 'rsd_link'); remove_action('wp_head', 'wlwmanifest_link'); // 検索フォーム add_theme_support( 'html5', array( 'search-form' ) ); // 「Windows Live Writer」は使わない remove_action('wp_head', 'wlwmanifest_link');
CSS,JSファイルタグ
header.phpに書き込みせず、functions.phpから挿入。
function theme_name_scripts() { wp_enqueue_style( 'style-name', get_stylesheet_uri() ); wp_enqueue_script( 'script-name', get_template_directory_uri() . '/js/example.js', array(), '1.0.0', true ); } add_action( 'wp_enqueue_scripts', 'theme_name_scripts' );