我一直在尝试将我的引导主题转换为 WordPress 主题,但是一旦我添加了我的 js 文件,我就会得到这个内存错误。
错误看起来像这样
Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 20480 bytes) in C:\xampp\htdocs\livedinner\wp-includes\class.wp-dependencies.php on line 312
这是我的代码
function theme_js()
{
wp_enqueue_scripts('popper_js',get_template_directory_uri() . 'js/popper.min.js' , array('jquery'),
'1',
true );
}
add_action('wp_enqueue_scripts','theme_js');