Wordpress主题-创建样式表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress主题-创建样式表相关的知识,希望对你有一定的参考价值。

if don't like `@import` in stylesheet
  1. function create_stylesheet() {
  2. $templatedir = get_bloginfo('template_directory');
  3. $stylesheetdir = get_bloginfo('stylesheet_directory');
  4. ?>
  5. <link rel="stylesheet" type="text/css" href="<?php echo $templatedir ?>/library/styles/reset.css" />
  6. <link rel="stylesheet" type="text/css" href="<?php echo $templatedir ?>/library/styles/typography.css" />
  7. <link rel="stylesheet" type="text/css" href="<?php echo $templatedir ?>/library/styles/images.css" />
  8. <link rel="stylesheet" type="text/css" href="<?php echo $templatedir ?>/library/layouts/2c-r-fixed.css" />
  9. <link rel="stylesheet" type="text/css" href="<?php echo $templatedir ?>/library/styles/default.css" />
  10. <link rel="stylesheet" type="text/css" href="<?php echo $templatedir ?>/library/styles/plugins.css" />
  11. <link rel="stylesheet" type="text/css" href="<?php echo $stylesheetdir ?>/style.css" />
  12. <?php
  13. }
  14. add_filter('thematic_create_stylesheet', 'create_stylesheet');

以上是关于Wordpress主题-创建样式表的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress 样式表问题:资源解释为样式表,但使用 MIME 类型传输

没有样式表在wordpress中正在工作

WordPress子主题样式表标题

如何使用 zee 样式主题更改 Wordpress 标题中的字体

样式表将自动删除/取消注册 - WordPress

Tailwind 覆盖了 wordpress 主题样式