wordpress网站首页底部栏显示网站备案信息

一、页脚文件footer.php

例如,wordpress主题使用的是simple-life主题,服务器IP为192.168.68.89,在wordpress主题文件中有个页脚文件footer.php,这是一个包含网站页脚代码的文件。
footer.php 路径如下:

bash 复制代码
/www/wwwroot/192.168.68.89/wp-content/themes/simple-life/footer.php
二、修改footer.php,添加网站备案信息

通过ssh工具,远程连接到服务器,切换到root用户,切换到footer.php文件所在的目录,使用vim编辑footer.php文件。

bash 复制代码
root@iZ0sZ:/# cd /www/wwwroot/192.168.68.89/wp-content/themes/simple-life/
root@iZ0sZ:/www/wwwroot/192.168.68.89/wp-content/themes/simple-life# ls
404.php           content-page.php    css            inc        page.php        searchform.php  style.css    vendor
archive.php       content.php         footer.php     index.php  readme.txt      search.php      support
comments.php      content-search.php  functions.php  js         rtl.css         sidebar.php     template
content-none.php  content-single.php  header.php     languages  screenshot.png  single.php      third-party
root@iZ0sZ:/www/wwwroot/192.168.68.89/wp-content/themes/simple-life# vim footer.php 
root@iZ0sZ:/www/wwwroot/192.168.68.89/wp-content/themes/simple-life# 

在footer标签内的底部添加备案信息

bash 复制代码
<footer>

</footer>

其中xxxxxxxxxxxxxx、豫公网安备xxxxxxxxxxxxxx号、豫ICP备yyyyyyyyyy号-1和备案图标.png,它们的路径替换成自己的网站备案信息即可。

html 复制代码
    <!-- 备案信息 -->
    <div class="footer-certification" style="width:500px;margin:0 auto; padding:20px 0;">
        <a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=xxxxxxxxxxxxxx"
            style="display:inline-block;text-decoration:none;height:20px;line-height:20px;"><img
                src="http://192.168.68.89/wp-content/uploads/2021/12/备案图标.png" style="float:left;" />
            <p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#FFFFFF;">豫公网安备
                xxxxxxxxxxxxxx号
            </p>
        </a>
        &nbsp;&nbsp;&nbsp;
        <a target="_blank" href="https://beian.miit.gov.cn"
            style="display:inline-block;text-decoration:none;height:20px;line-height:20px;">
            <p style="float:left;height:20px;line-height:20px;margin: 0px 0px 0px 5px; color:#FFFFFF;">
                豫ICP备yyyyyyyyyy号-1
            </p>
        </a>
    </div>

保存后,网站首页底部备案信息如下:


相关推荐
AC是你的谎言1 小时前
网络层和数据链路层
linux·网络·学习·智能路由器
王道长服务器 | 亚马逊云1 小时前
AWS + 发财CMS:高效采集站的新形态
服务器·网络·云计算·音视频·aws
waves浪游1 小时前
基础开发工具(下)
linux·运维·服务器·开发语言·c++
Miki Makimura2 小时前
KVStore 多行文章型键值扩展解析:切片存储与客户端多行交互
运维·服务器·网络·学习
qq_334466863 小时前
excel VBA应用
java·服务器·excel
春风霓裳3 小时前
ubuntu磁盘管理、磁盘扩容
linux·运维·ubuntu
直有两条腿3 小时前
【操作系统】非连续内存分配
linux
Kingsaj3 小时前
uni-app打包app -- 在用户首次启动 App 时,强制弹出一个“用户协议与隐私政策”的确认对话框。
服务器·ubuntu·uni-app
黑云压城After3 小时前
纯css实现加载动画
服务器·前端·css
---学无止境---4 小时前
Linux交换缓存深度解析:从条目编码到缓存管理的完整机制
linux