大多数情况下,父主题可能是子主题的style.css
, 如果是这样,您可以使用handle将其出列,然后使用适当的依赖关系将其入列。
如果子主题的句柄为child-theme-style
, 然后使用
wp_dequeue_style(\'child-theme-style\')
然后根据需要将其排队,就像这样。
wp_enqueue_style(\'child-theme-dep\',get_stylesheet_uri(),array(\'bootstrap-handle-here\'))
我们可以通过查看头部中的链接输出,例如在所附的图像中,轻松了解子主题样式表url。
<link rel=\'stylesheet\' id=\'hybrid-style-css\' href=\'https://wptavern.com/wp-content/themes/stargazer-child-dev/style.css?ver=4.6.1\' type=\'text/css\' media=\'all\' />
告诉我们子主题的排队句柄是
hybrid-style
哪个是
id
无
-css
.