php – WordPress儿童主题:删除主题格式

使用具有WP’Apostrophe’主题的子主题会导致示例页面无需任何主题格式显示:
https://begnbark.com/wp/

‘会在这里欣赏一些照明.

谢谢!

最佳答案 您需要将主题的父级样式排入队列,将其放在子主题的functions.php中:

<?php

function enqueue_parent_style() {
  wp_enqueue_style( 'apostrophe-parent', get_template_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts', 'enqueue_parent_style' );
点赞