如何在wordpress中链接外部css? [关闭]
Posted
技术标签:
【中文标题】如何在wordpress中链接外部css? [关闭]【英文标题】:How to link external css in wordpress? [closed] 【发布时间】:2015-01-18 16:08:45 【问题描述】:我使用的主题仅支持一个主标题菜单。我正在尝试使用另一个使用外部 css 来制作另一个。如何在 wordpress 主题中链接外部 css。
【问题讨论】:
【参考方案1】:您最好的选择是将文件排入您想要的页面。
在functions.php文件中,添加这段代码
// Register style sheet.
add_action( 'wp_enqueue_scripts', 'register_custom_plugin_styles' );
/**
* Register style sheet.
*/
function register_custom_plugin_styles()
wp_register_style( 'my-stylesheet', 'STYLESHEETS URL' );
wp_enqueue_style( 'my-stylesheet' );
如果您只想在特定页面上执行此操作,那么您需要将它放在 if 语句中,检查您当前所在的页面以确定是否运行上述脚本。
在此处阅读有关排队脚本的更多信息:http://codex.wordpress.org/Function_Reference/wp_register_style
【讨论】:
【参考方案2】:您可以使用 enqueue,也可以转到主题的 style.css
文件,然后在其中使用 @import
规则链接到。
例子:
@import url("//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css");
或者,您可以编辑主题中的header.php
文件以链接到外部样式表。
例子:
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
【讨论】:
***.com/questions/11709625/… 是的,或者您可以编辑主题中的header.php
文件以链接到外部样式表。以上是关于如何在wordpress中链接外部css? [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
如何仅通过 CSS 使具有相同类的 div 链接到 Wordpress 中的不同 URL?
如何在不引用外部 CSS 文件的情况下在 WordPress PHP 文件中创建内联 CSS?
如何在 WordPress header.php 中正确链接到 CSS?