php 从内容中删除Divi短代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从内容中删除Divi短代码相关的知识,希望对你有一定的参考价值。

<?php
/**
 * Remove Divi shortcodes from content
 *
 * @see http://victorfont.com/remove-divi-shortcodes-changing-themes/
 */

function remove_divi_shortcodes( $content ) {
    $content = preg_replace('/\[\/?et_pb.*?\]/', '', $content);
    return $content;
}

以上是关于php 从内容中删除Divi短代码的主要内容,如果未能解决你的问题,请参考以下文章

php 从摘录中删除短代码(WordPress)

通过 php 函数从 wordpress 短代码中删除空的 <p> 标签

php Divi主题:删除Filterable Portfolio中每个Portfolio项目的链接。

php 删除新主题的Divi Shortcodes

从 Divi(WP 主题)中删除移动菜单中自动生成的 <a>s

php Divi全屏自定义菜单点击关闭代码