如何在 Wordpress 中的 php 文件上调用 css? [复制]
Posted
技术标签:
【中文标题】如何在 Wordpress 中的 php 文件上调用 css? [复制]【英文标题】:how can i can call css on a php file in Wordpress? [duplicate] 【发布时间】:2012-12-26 20:22:38 【问题描述】:可能重复:How To Include CSS and jQuery in my wordpress plugin?
我打算在 wordpress 插件上添加一个按钮
我想在按钮上添加一个样式,我知道将 css 调用到 html 文件中的基本方法。
<link rel="stylesheet" type="text/css" href="buttonPro.css">
但它不适用于 php 文件
【问题讨论】:
显示您的代码。还要检查这个***.com/questions/3760222/… 典型的 PHP 文件只输出 HTML,这样就可以了。 (在其他条件相同的情况下,通常是级联规则并且必须应用正确的 URL) 【参考方案1】:你可以这样称呼它:
<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>
/css/style.css" media="screen" />
当您的样式表位于名为“css”的子目录中且实际文件名为“style.css”时。不要忘记在 php 中转义 HTML 代码:
<?php
put some php code here
?>
**put some HTML code here**
<?php
now you can continue with php
?>
【讨论】:
以上是关于如何在 Wordpress 中的 php 文件上调用 css? [复制]的主要内容,如果未能解决你的问题,请参考以下文章
如何从 PHP 代码自定义 Wordpress DashBoard 中的用户角色?