因此,我正在尝试从 wordpress 主题“全屏代理”创建一个名为 Premierpas 的子主题。我在主题中创建了 Premierpas 文件夹,然后添加了一个包含该内容的 css 文件:
/*
Theme Name: Premier Pas
Author: Garga Le Noir
Template: fullscreen-agency
Version: 1.0.0
*/
和具有此内容的functions.php:
<?php
function premierpas_enqueue_styles() {
$parent_style = 'fullscreen-agency';
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 ),null);
}
我已经尝试了很多其他版本的函数代码,但都没有成功。当我尝试激活它时,我的网站就崩溃了。我只有一条消息告诉我存在技术问题,我收到一封电子邮件以激活恢复模式。我确信这个错误是微不足道的,如果我在浪费你的时间,我很抱歉,但我很坚持这个......任何帮助将不胜感激,在此先感谢