php – WordPress儿童主题:删除主题格式
发布时间:2020-12-13 16:11:09 所属栏目:PHP教程 来源:网络整理
导读:使用具有WP’Apostrophe’主题的子主题会导致示例页面无需任何主题格式显示: https://begnbark.com/wp/ ‘会在这里欣赏一些照明. 谢谢! 解决方法 您需要将主题的父级样式排入队列,将其放在子主题的functions.php中: ?phpfunction enqueue_parent_style()
使用具有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' ); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |