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>

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


相关推荐
xian0gang10 分钟前
rk3588 区分两个相同的usb相机
linux
这儿有一堆花19 分钟前
安全访问家中 Linux 服务器的远程方案 —— 专为单用户场景设计
linux·服务器·安全
RussellFans1 小时前
Linux 文本三剑客(grep, awk, sed)
linux·运维·服务器
Chuncheng's blog1 小时前
CentOS 7如何编译安装升级gcc至7.5版本?
linux·运维·c++·centos
听风吹等浪起1 小时前
CentOS在vmware局域网内搭建DHCP服务器【踩坑记录】
linux·服务器·centos
明月看潮生1 小时前
青少年编程与数学 01-011 系统软件简介 04 Linux操作系统
linux·青少年编程·操作系统·系统软件·编程与数学
aitav02 小时前
⚡️ Linux Docker 基本命令参数详解
linux·运维·docker
姓刘的哦2 小时前
ubuntu中使用docker
linux·ubuntu·docker
代码程序猿RIP2 小时前
【Linux】(1)—进程概念-⑤进程调度
linux·运维
MrWang.3 小时前
Ubuntu中SSH服务器安装使用
服务器·ubuntu·ssh