您可以覆盖标题<head> ... </head>
在header.php
你的主题。
我宁愿你创建一个儿童主题,如果你不知道怎么做,let me google that for you ;).
而不是简单地复制header.php
从中的父主题/wp-content/themes/your-theme
到/wp-content/themes/your-child-theme
(用您的主题目录替换主题目录)。
并在之后添加您的样式<?php wp_head(); ?>
和之前</head>
与往常一样,css样式将添加:
<link rel="stylesheet" href="/wp-content/themes/your-child-theme/css/yourStylesheet.css" type=\'text/css\' media=\'all\' />
样式将添加到每个页面。
希望有帮助。