最新のワードプレスに付属している標準のトゥウェンティサーティーン テーマを編集しています。
自分の .css ファイルを wp_head にいくつか追加する必要がありますが、その方法がわかりません。現在、wp_head の外でファイルを呼び出していますが、これは面倒で、適切に実行したいと考えています。
<meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width">
<title><?php wp_title( '|', true, 'right' ); ?></title>
<link rel="profile" href="http://gmpg.org/xfn/11">
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<!--[if lt IE 9]>
<script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo("template_url"); ?>/bootstrap.css" />
<script type="text/javascript" src="<?php bloginfo("template_url"); ?>/js/bootstrap.min.js"></script>
<?php wp_head(); ?>
wp_head に何が入るかはどこで定義されていますか?どうすればそれに独自のものを追加できますか?