我正在编辑最新的 wordpress 附带的标准二十三主题。
我需要将一些我自己的 .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 以及如何添加我自己的?