実行前にコンテンツからギャラリーショートコードを削除することはできthe_content()
ますか?コーデックスを検索して見つけましremove_shortcode( $tag )
たが、例が示されていません。
関数に追加してみました
function remove_gallery($content) {
$content .= remove_shortcode('[gallery]');
return $content;
}
add_filter( 'the_content', 'remove_gallery', 6);
動作しません。
アップデート:
以下のコードを使用してショートコードの登録を解除できましたが、コンテンツも削除されます
function remove_gallery($content) {
return remove_shortcode('gallery', $content);
}
add_filter( 'the_content', 'remove_gallery', 6);