目录:
一、常用的方法——直接在主题编辑器里面改
二、万能的方法——在 Linux 系统中改 php 内容
一、常用的方法——直接在主题编辑器里面改
1、打开 WordPress 后台管理,点击【外观】
2、点击【主题编辑器】
3、在主题文件栏,选中【主题页脚】footer.php,这是页脚的 php 文件
4、找到 printf 函数,将后面括号里的内容改为自己要显示的版权标识(或移除)。点击【更新文件】按钮保存就可以了
网站刷新页面应该就看到改成功了
备注:如foolter.php里面没printf函数和版权标识内容,那就找找【主题文件】栏的其它 php 文件。
二、万能的方法——在 Linux 系统中改 php 内容
有的开发者为了不让人随便改(开通会员才让改),就会把这个版权标识原始文件放得比较深,这就没法直接在后台改了,得去服务器编辑 php 文件,不过也不难。
1、假定我们要修改名称为“generatepress” 的主题的版权标识,那要在 Linux 中先找出版权标识所在文件的位置,一般文件名称是 footer.php。在 WordPress 安装目录下,使用 find 命令查找这个名称的文件,找到要修改的文件(见注释):
[root@blogserver /] /var/www/html/wp-includes/theme-compat/footer.php /var/www/html/wp-content/plugins/jetpack/_inc/footer.php /var/www/html/wp-content/plugins/updraftplus/templates/wp-admin/settings/footer.php /var/www/html/wp-content/themes/twentytwenty/footer.php /var/www/html/wp-content/themes/twentynineteen/footer.php /var/www/html/wp-content/themes/generatepress/inc/structure/footer.php /var/www/html/wp-content/themes/generatepress/footer.php /var/www/html/wp-content/themes/twentyseventeen/footer.php /var/www/html/wp-content/themes/twentytwelve/footer.php /var/www/html/wp-content/themes/twentyfifteen/footer.php
2、进入要修改的 php 文件的目录,编辑此文件
[root@blogserver structure]
3、找到有 sprintf 或 printf 函数的地方,修改版权标识(或移除)。保存,刷新前台页面即可:
http://linxuanqing.cn/index.php/2020/09/07/155/
原文链接:https://blog.csdn.net/weixin_45448561/article/details/111084630?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522171852202816800227461390%2522%252C%2522scm%2522%253A%252220140713.130102334.pc%255Fblog.%2522%257D&request_id=171852202816800227461390&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~blog~first_rank_ecpm_v1~times_rank-9-111084630-null-null.nonecase&utm_term=wordpress%E4%B8%BB%E9%A2%98