使用child theme - 这样,您就不必编辑原始(父)主题,它只需要包含一个样式表(如Codex页面上的示例所示导入父样式)、您的函数。php和标题。php。
如果(出于任何原因)您不想使用wp_head
钩子,然后是你的头球。php文件的外观如下:
<head>
<?php echo my_head_function(); ?>
rest of header stuff here...
</head>
然后在函数中。php:
<?php
my_head_function() {
// do stuff
return whatever;
}
?>