在Wordpress的Customizr主题中何处编辑页脚文本

时间:2019-02-28 04:53:47

标签: php wordpress wordpress-theming custom-wordpress-pages

请帮助我在哪里编辑页脚,以删除文本“ 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;

}

2 个答案:

答案 0 :(得分:1)

在您的仪表板中,转到外观>自定义>高级选项>其他CSS,然后输入以下代码:

.czr-credits {
    display: none;
}

或者,方法2:

这涉及创建一个子customizr主题,该主题基本上会覆盖其父项样式(也包括页脚)。

  1. 在子主题中创建inc目录
  2. czr-front-ccat.php中的/public/wp-content/themes/customizr/inc复制到此子inc目录
  3. 修改czr-front-ccat.php(在文件中的第9456行附近)是有问题的函数,用对apply_filters函数的简单调用(但不包含字符串的sprintf)替换插入wordpress和customizr引用的两个部分。

资源:

https://wordpress.org/support/topic/designed-with-the-customizr-theme/

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

答案 1 :(得分:1)

尝试添加育儿功能

body .czr-credits {
    display: none;
}