📅  最后修改于: 2023-12-03 15:35:44.960000             🧑  作者: Mango
在 WordPress 主题开发中,样式表的使用非常重要,它可以控制网站的外观和布局。而 wp_enqueue_style 函数则是在 WordPress 中加载主题或插件所需的样式表的函数。
wp_enqueue_style( string $handle, string $src = '', array $deps = array(), string|bool|null $ver = false, string $media = 'all' )
如果你需要在主题中添加 style.css 样式表,可以在 functions.php 文件中使用 wp_enqueue_style 函数来实现:
function add_my_theme_style() {
wp_enqueue_style( 'my-theme-style', get_stylesheet_uri() );
}
add_action( 'wp_enqueue_scripts', 'add_my_theme_style' );
在这个例子中,my-theme-style 是样式表的名称(handle),get_stylesheet_uri() 函数用于获取 style.css 文件的路径。'wp_enqueue_scripts' 是在主题页面中添加样式表的最佳时间。
get_stylesheet_directory_uri()
函数,而不是使用相对路径或绝对路径。使用 wp_enqueue_style 函数可以更加简洁和高效地加载样式表,确保了样式表的正确加载顺序,避免了冲突和重复加载的问题。使用它,使得主题开发更加优雅和可维护。