简体   繁体   English

Wordpress 儿童主题不更新

[英]Wordpress Child Theme Not Updating

I am working with Wr Nitro child theme.我正在使用 Wr Nitro 儿童主题。 I have created the functions.php file, but all modifications are not showing up in the platform.我已经创建了 functions.php 文件,但所有修改都没有显示在平台中。 I've already tried everything, cleared the cache, updating woocommerce files, but no results.我已经尝试了所有方法,清除缓存,更新 woocommerce 个文件,但没有结果。 There's my function.php code:这是我的 function.php 代码:

function wr_nitro_child_enqueue_scripts(){
wp_enqueue_style('wr-nitro-child-style', get_stylesheet_directory_uri() . '/style.css');
} add_action('wp_enqueue_scripts', 'wr-nitro_child_enqueue_scripts', 1000000000 );

you have different functions inside add_action and as a function name.您在 add_action 和 function 名称中有不同的功能。 wr_nitro_child_enqueue_scripts vs wr-nitro_child_enqueue_scripts I suggest always copying function and variable names instead of writing them. wr_nitro_child_enqueue_scripts 与 wr-nitro_child_enqueue_scripts 我建议总是复制 function 和变量名而不是编写它们。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM