在WordPress的Customizr主题中在哪里编辑页脚文本

请帮助我在哪里编辑页脚, 以删除文本” Powered by Designed with Customizr Theme” 。

< footer id="footer" class="< ?php echo czr_fn__f('tc_footer_classes', '') ?> "> < ?php do_action( '__footer' ); // hook of footer widget and colophon?> < /footer>

我试图在其他CSS中添加以下代码。它不起作用。
.czr-credits { display: none;

}
#1在控制台中, 转到外观> 自定义> 高级选项> 其他CSS, 然后输入以下代码:
.czr-credits { display: none; }

或者, 方法2:
这涉及创建一个子customizr主题, 该主题基本上会覆盖其父项样式(也包括页脚)。
  1. 在子主题中创建inc目录
  2. 从/ public / wp-content / themes / customizr / inc将czr-front-ccat.php复制到此子公司目录中
  3. 修改czr-front-ccat.php, 该文件中的第9456行是有问题的功能, 用对apply_filters函数的简单调用但不包含字符串的sprintf替换插入wordpress和customizr引用的两个部分。
资源:
https://wordpress.org/support/topic/designed-with-the-customizr-theme/
【在WordPress的Customizr主题中在哪里编辑页脚文本】https://docs.presscustomizr.com/article/35-how-to-customize-the-customizr-wordpress-theme
https://docs.presscustomizr.com/article/24-why-and-how-to-create-a-child-theme-with-wordpress
#2尝试添加育儿
body .czr-credits { display: none; }

    推荐阅读