WordPress--将文章的H标签降级

原文网址:WordPress--将文章的H标签降级-CSDN博客

简介

本文介绍WordPress如何将文章的H标签降级。

方法

在functions.php文件里或者Code Snippets插件中添加如下代码:

php 复制代码
function change_head_level($content) {
    $content = preg_replace('/<h5\b([^>]*>)(.*?)<\/h5>/', '<h6$1$2</h6>', $content); // 将 h5 替换为 h6
    $content = preg_replace('/<h4\b([^>]*>)(.*?)<\/h4>/', '<h5$1$2</h5>', $content); // 将 h4 替换为 h5
    $content = preg_replace('/<h3\b([^>]*>)(.*?)<\/h3>/', '<h4$1$2</h4>', $content); // 将 h3 替换为 h4
    $content = preg_replace('/<h2\b([^>]*>)(.*?)<\/h2>/', '<h3$1$2</h3>', $content); // 将 h2 替换为 h3
    $content = preg_replace('/<h1\b([^>]*>)(.*?)<\/h1>/', '<h2$1$2</h2>', $content); // 将 h1 替换为 h2
    
    return $content;
}

add_filter('the_content', 'change_head_level');
相关推荐
longze_75 天前
wordpress上传图片无法显示
wordpress
Web极客码5 天前
解决WordPress后台“外观”菜单消失
linux·服务器·wordpress
globaldomain6 天前
立海世纪:WordPress 6.9的新功能、新模块、新API
前端·javascript·html·新媒体运营·网站建设·wordpress·域名注册
podoor7 天前
专业外贸网站建站公司
wordpress
podoor7 天前
php版本升级后page页面别名调用出错解决方法
开发语言·php·wordpress
Web极客码8 天前
WordPress 被重定向到垃圾站的排查全过程
运维·服务器·网络·wordpress
longze_78 天前
解决wordpress内网穿透后,公网无法访问wordpress管理后台wp-admin问题
数据库·wordpress·反向代理
WordPress学习笔记8 天前
WordPress新手建站选SiteGround还是Hostinger
wordpress
WordPress学习笔记9 天前
专业WooCommerce模板一站式服务平台
wordpress
Web极客码9 天前
如何在WordPress中轻松添加阴影框提升网站设计
wordpress