Wordpress使用一个过滤器和操作系统在特定的时间做特定的事情。其中一个操作是wp\\u enqueue\\u脚本,它在wp\\u head()函数中调用(您肯定应该在header.php中找到)。
可以使用命令add\\u action向此操作添加函数。Wordpress还具有添加名为wp\\u enqueue\\u style的样式表的功能。这是为了确保同一个样式表或javascript不会在同一个文档中多次链接。
所以,如果你研究你的主题功能。php,您肯定会发现如下内容:
function include_my_funky_styles() {
wp_enqueue_style( \'my-style-name\', get_stylesheet_uri() );
// this function says "put the stylesheet into the header"
}
add_action( \'wp_enqueue_scripts\', \'include_my_funky_styles\' );
//this function says "when doing the action enqueue_scripts within the header, also do this
快乐编码,Kuchenundkakao