我正在尝试用子主题修改wordpress主题。我的父主题在其功能中具有以下功能。php:
require_once(get_template_directory() . "/includes/theme-styles.php");
我想将其更改为包含我自己的样式表:类似于:
require_once(get_template_directory() . "../child-theme/includes/theme-styles.php");
我可以在我的子主题函数中包含此函数。php,但因为子主题的函数。php是先加载的,我看不到任何方法可以覆盖/阻止父主题的require\\u once()被调用。有没有办法做到这一点,或者有没有可能的解决方法?谢谢