标签: php css wordpress
将子主题与WP'Apostrophe'主题一起使用会导致示例页面显示时不使用任何主题格式:https://begnbark.com/wp/
'请在这里欣赏一些照明。
谢谢!
答案 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' );