wordpress中的儿童主题目录

时间:2016-09-02 03:24:56

标签: php html css wordpress content-management-system

我是wordpress中制作儿童主题的新手,我对我的孩子主题有疑问。如果它被放置在我的父主题中的其他目录中,我如何更改子主题中的footer.php。在这里,父主题将footer.php置于hooks-> footer.php之下 父主题页脚目录: Parent theme directory

这是我的孩子主题,我想要更改页脚 我孩子主题的目录? : Child theme directory

这是我的孩子主题functions.php:

{
  "payload": {
    "lock": "L1",
    "maxtmptr": 50,
    "serial": "SX001",
    "stat": 255,
    "timeover": 0.17,
    "tmptr": 30
  },
  "serial": "SX001",
  "timestamp": "1472784542467"
}

1 个答案:

答案 0 :(得分:0)

绑定父子主题的正确方法是使用wp_enqueue_scripts操作,并在子主题的functions.php中使用wp_enqueue_style(),如下所示。

    <?php
    function my_theme_enqueue_styles() {

       $parent_style = 'parent-style'; // This is 'twentyfifteen-style' for     the Twenty Thirteen 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' );
?>

http://www.codextutor.com/creating-child-theme-in-wordpress/

中查看更多详情

希望它会对你有所帮助。