如何在WordPress子主题中创建我自己的style.css文件

时间:2018-03-29 作者:Dev_John

我正在研究一个叫做“下陷阱”的主题。我以儿童为主题。主题

allready有自己的风格。css和函数。php。我想创造我自己的风格。css文件

并覆盖该样式。他们包含的css。有什么建议吗?

非常感谢你

2 个回复
SO网友:Liam Stewart

看看官方文件:https://codex.wordpress.org/Child_Themeshttps://developer.wordpress.org/themes/advanced-topics/child-themes/

确保你在你的孩子主题中functions.php 并使用此代码确保函数正在启动。如果页面工作正常,它将终止页面。

  function wpdocs_theme_name_scripts() {
          wp_die(\'Yep! This is working\');
    }
    add_action( \'wp_enqueue_scripts\', \'wpdocs_theme_name_scripts\' );

SO网友:AddWeb Solution Pvt Ltd

您需要将以下代码添加到子主题的函数中。php

    /**
     * Proper way to enqueue scripts and styles
     */
    function wpdocs_theme_name_scripts() {
        wp_enqueue_style( \'style-name\', get_stylesheet_uri() );
        wp_enqueue_style( \'custom-css\', get_stylesheet_uri() . \'/css/custom.css\', array(), \'1.0.0\' );
        wp_enqueue_script( \'custom-js\', get_stylesheet_uri() . \'/js/custom.js\', array(), \'1.0.0\', true );
    }
    add_action( \'wp_enqueue_scripts\', \'wpdocs_theme_name_scripts\' );

结束