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>

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


相关推荐
-XWB-13 分钟前
【安全漏洞】网络守门员:深入理解与应用iptables,守护Linux服务器安全
linux·服务器·网络
不做无法实现的梦~21 分钟前
mid360连接机载电脑,远程桌面连接不上的情况
运维·服务器·电脑
kura_tsuki1 小时前
[Linux入门] Linux 远程访问及控制全解析:从入门到实战
linux·服务器·安全
lunz_fly19921 小时前
统信 UOS 安装 svn 指南
linux
Antonio9151 小时前
【Redis】Linux 配置Redis
linux·数据库·redis
张火火isgudi1 小时前
CentOS8 使用 Docker 搭建 Jellyfin 家庭影音服务器
服务器·docker·容器
晴天¥1 小时前
阶段1--域名服务器
运维·服务器·网络
Rover.x2 小时前
内存泄漏问题排查
java·linux·服务器·缓存
禁默2 小时前
进程调度的艺术:从概念本质到 Linux 内核实现
linux·运维·服务器
CLO_se_2 小时前
嵌入式软件面试八股文
linux·面试