我创建了子主题,在函数php中我仅添加了一个函数,为什么最大函数嵌套级别为256?未捕获的错误:达到最大功能嵌套级别“ 256”,正在中止!在C:\ wamp64 \ www \ one-by-one \ wp-includes \ cache.php在第726行
如果将其添加到主题本身的functions.php中,则效果很好。增加xdebug.max_nesting_level不起作用,禁用xdebug不起作用。如果禁用xdebug,则会显示消息“超出内存限制”
function oceanwp_child_enqueue_parent_style()
{
// Dynamically get version number of the parent stylesheet (lets browsers re-cache your stylesheet when you update your theme)
$theme = wp_get_theme('OceanWP');
$version = $theme->get('Version');
// Load the stylesheet
wp_enqueue_style('child-style', get_stylesheet_directory_uri() . '/style.css', array('oceanwp-style'), $version);
wp_enqueue_scripts('wc_shop_products', get_stylesheet_directory_uri() . '/assets/js/wc_shop_products.js', null, 1.0, true);
}
add_action('wp_enqueue_scripts', 'oceanwp_child_enqueue_parent_style');
它如何工作?我做了wp文档中描述的创建子主题的所有操作 我尝试通过customize,oceanwp创建子主题,但它们都不起作用。
我使用wamp,xdebug。
如果我尝试调试或对其进行修改,就可以了,不要超出内存或其他任何东西。