从WordPress中的父主题继承文件

时间:2014-09-26 10:19:14

标签: wordpress themes parent-child

经过很长一段时间我再次制作WordPress的儿童主题。我知道关于创建子主题我需要知道的WordPress的每个部分。但这次我无法制作继承父母主题的儿童主题。 在我的情况下发生了什么?

style.css文件

/*
Theme Name: ifn child theme
Them URI: ifn.org.np
Description: This is child theme of ifn
Author:suku
Author URI:suku.com.np
Template: ifn
Version:1.0
*/
@import url('../ifn/style.css');

1 个答案:

答案 0 :(得分:0)

您还可以使用以下代码添加父样式表: -

add_action( 'wp_enqueue_scripts', 'load_my_styles' );
function load_my_styles() {
    wp_enqueue_style( 'parent-theme', get_template_directory_uri() . '/style.css' );
}

希望这会对你有帮助。!