gpt4 book ai didi

html - 如何通过 wp_enqueue_style() 在 Wordpress 中使用 HTML 媒体属性?

转载 作者:太空宇宙 更新时间:2023-11-04 10:40:48 25 4
gpt4 key购买 nike


我正在使用 wp_enqueue_style() 将样式表加载到我的 wordpress 主题中,如下所示:

wp_enqueue_style(
'custom-stylesheet',
get_stylesheet_directory_uri() . '/stylesheets/style.css',
array(),
'1.0.0'
);

我的目标是为每个分辨率或媒体查询使用一个样式表文件

所以我找到了以下解决方案:

<link rel="stylesheet" media='screen and (min-width: 140px) and (max-width: 380px)' href="style.css"/>

此时,我需要在我的 <link> 标签上使用 media 属性。

如何在 wordpress 中使用它?

最佳答案

wp_enqueue_style() 接受 media 作为最终参数:

wp_enqueue_style(
'custom-stylesheet',
get_stylesheet_directory_uri() . '/stylesheets/style.css',
array(),
'1.0.0',
'screen and (min-width: 140px) and (max-width: 380px)'
);

阅读更多 in the docs .

关于html - 如何通过 wp_enqueue_style() 在 Wordpress 中使用 HTML <link> 媒体属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35827538/

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