相关疑难解决方法(0)

Wordpress从内容中删除短代码

是否可以在the_content()执行之前从内容中删除图库短代码?我搜索了codex remove_shortcode( $tag )但发现它们没有显示任何例子.

我尝试添加功能

function remove_gallery($content) {
    $content .= remove_shortcode('[gallery]');
    return $content;
}
add_filter( 'the_content', 'remove_gallery', 6); 
Run Code Online (Sandbox Code Playgroud)

它不起作用..

更新:

我能够使用下面的代码取消注册短代码,但它也删除了内容

function remove_gallery($content) {
    return remove_shortcode('gallery', $content);
}
add_filter( 'the_content', 'remove_gallery', 6); 
Run Code Online (Sandbox Code Playgroud)

wordpress function filter shortcode

3
推荐指数
2
解决办法
2万
查看次数

标签 统计

filter ×1

function ×1

shortcode ×1

wordpress ×1