我無法激活WordPress主題的兒童主題。 我創建了一個二十四個孩子的文件夾。我有Wordpress 2014兒童主題設置
1 /*
2 Theme Name:Twenty Fourteen Child
3 Version: 1.0
4 Theme URI: link
5 Description: A basic starter child theme for Twenty Fourteen
6 Author: Tim
7 Author URI: link
8 Template: twentyfourteen
9 License: GPL
10 License URI: ...
11 */
一個style.css文件並與
1<?php
2 add_action('wp_enqueue_scripts', 'enqueue_parent_styles');
3 function enqueue_parent_styles() {
4 wp_enqueue_style('parent-style', get_template_directory_uri().'/style.css');
5 }
一個的functions.php我正在使用相同的主題,相同的代碼,這是工作的罰款又一個WordPress站點。這兩個網站都安裝在子目錄 中,style.css中的模板名稱與父主題的目錄名稱匹配。我基本上只是複製這兩個文件。
當我激活子主題菜單結構被銷燬。側面包含左側和頂側的菜單,但現在它們都合併在頂層菜單中。有人知道這裏有什麼可能是錯的!?
你在製作'twentyfourteen'主題的兒童主題嗎?或不同的主題? – rnevius 2015-02-11 07:49:23
我創建了二十四個主題的兒童主題 – theDrifter 2015-02-11 07:50:32
你做了一個** functions.php **或一個** function.php **(注意'S') – rnevius 2015-02-11 07:51:37