WordPress子主题:删除主题格式

时间:2019-02-24 07:10:18

标签: php css wordpress

将子主题与WP'Apostrophe'主题一起使用会导致示例页面显示时不使用任何主题格式:https://begnbark.com/wp/

'请在这里欣赏一些照明。

谢谢!

1 个答案:

答案 0 :(得分:1)

您需要排队主题的父样式,并将其放入子主题中的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' );