gpt4 book ai didi

php - WordPress:wp_enqueue_style 不工作

转载 作者:太空宇宙 更新时间:2023-11-04 01:15:58 26 4
gpt4 key购买 nike

我看到其他人在更特殊的情况下遇到过此功能的问题,但我真的很难让它正常工作。

我的 functions.php 里有这个:

function load_styles() {
wp_register_style( 'style', get_stylesheet_uri() );
wp_enqueue_style( 'style' );
}
add_action( 'wp_enqueue_scripts', 'load_styles' );

这对我网站的样式没有影响。如果我把它放在 header.php 中就可以了相反:

<link rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" />

我会选择后者,然后(尽管我知道它在技术上不合适),但出于某种原因我的媒体查询无法以这种方式工作,所以我想我会尝试正确地对样式进行排队。我在这里完全不知所措;非常感谢任何建议。

最佳答案

您应该能够在不先注册的情况下将您的主题样式加入队列。

wp_enqueue_style('style', get_stylesheet_uri(), []);

如果仍然不起作用,请检查您的 header.php 是否包含 wp_head();,因为它会输出排队的样式。

关于php - WordPress:wp_enqueue_style 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50158788/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com