将其他 css 文件添加到wp_head
我正在编辑最新的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,我如何将自己添加到其中?