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>

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


相关推荐
Zfox_22 分钟前
【C++项目】从零实现RPC框架「四」:业务层实现与项目使用
linux·开发语言·c++·rpc·项目
吃旺旺雪饼的小男孩39 分钟前
Ubuntu 22.04 安装和运行 EDK2 超详细教程
linux·运维·ubuntu
IT小馋猫40 分钟前
Linux 企业项目服务器组建(附脚本)
linux·服务器·网络
阿政一号1 小时前
Linux进程间通信:【目的】【管道】【匿名管道】【命名管道】【System V 共享内存】
linux·运维·服务器·进程间通信
又过一个秋1 小时前
【sylar-webserver】7 定时器模块
linux·c++
啊哦1111 小时前
配置防火墙和SELinux(1)
linux·服务器·网络
唐青枫2 小时前
Linux 换行符的使用详解
linux
A charmer2 小时前
【Linux】文件系统知识梳理:从磁盘硬件到文件管理
linux·运维·服务器
Cynthia的梦2 小时前
Linux学习-Linux进程间通信(IPC)聊天程序实践指南
linux·运维·学习
卡戎-caryon2 小时前
【Linux网络与网络编程】03.UDP Socket编程
linux·服务器·网络·笔记·单例模式·udp·网络通信