无法在wordpress主题上加载自定义CSS

时间:2018-07-08 23:59:39

标签: php wordpress wordpress-theming

我已经创建了HTML / CSS设计,现在正尝试将其转换为WordPress模板。我已经创建了样式表和function.php。

我的function.php中有以下代码

<?php

   function test_theme(){
    wp_enqueue_style("customstyle", get_stylesheet_uri() )



   }

add_action( 'wp_enqueue_scripts', 'test_theme' );

我已将其添加到header.php

<?php wp_head(); ?>

出于某种原因,WordPress添加了一些脚本和指向标头的链接,但未添加我的自定义样式表

我在做什么错?我也是wordpress开发和观看youtube视频的新手。

1 个答案:

答案 0 :(得分:0)

如何从头开始创建wordpress主题:

  1. 在wp-content / themes / yourtheme中创建主题文件夹
  2. 在主题文件夹中创建一个index.php文件
  3. 在主题文件夹中创建样式表style.css
  4. 根据wordpress规则将代码放入index.php文件中

    <?php get_header(); echo "<h2>This is the index</h2>"; get_sidebar(); get_footer(); ?>

  5. 根据wordpress规则将CSS放在style.css中。通常,我们将其添加到style.css的顶部,这样您就不再需要将其排队在functions.php中。

/*
 * Theme Name: Your theme
 * Theme URI: https://yourtheme.com
 * Author: Memyself Andi
 * Author URI: https://yourtheme.com
 * Description: My WordPress theme.
 * Version: 1.0
*/

现在进入您的wordpress安装并转到“仪表板”>“外观”>“主题”>激活“您的主题”