是否可以在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)