php 儿童主题的Wordpres功能

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 儿童主题的Wordpres功能相关的知识,希望对你有一定的参考价值。

<?php
function my_theme_enqueue_styles() {

    $parent_style = 'butcher'; // This is 'twentyfifteen-style' for the Twenty Fifteen theme.

    wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    wp_enqueue_style( 'child-style',
        get_stylesheet_directory_uri() . '/style.css',
        array( $parent_style ),
        wp_get_theme()->get('Version')
    );
}
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );

/**
 * Loads the child theme textdomain.
 */
function wpdocs_child_theme_setup() {
    load_child_theme_textdomain( 'butcher', get_stylesheet_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'wpdocs_child_theme_setup' );

require_once( get_stylesheet_directory() . 'another_script.php' );

?>

以上是关于php 儿童主题的Wordpres功能的主要内容,如果未能解决你的问题,请参考以下文章

php Understrap的儿童主题

php 儿童主题

php 儿童主题

php 儿童主题目录

php 脚本入列儿童主题

php Divi的更好,更快,响应的图像 - 在Divi儿童主题上传。