是否有可能在執行the_content()
之前從內容中刪除圖庫短代碼?我搜查了codex,發現remove_shortcode($tag)
,但它們沒有顯示任何示例。Wordpress從內容中刪除短代碼
我嘗試添加到功能
function remove_gallery($content) {
$content .= remove_shortcode('[gallery]');
return $content;
}
add_filter('the_content', 'remove_gallery', 6);
它不工作..
更新:
我可以使用下面的代碼來註銷短代碼,但它也消除了content
function remove_gallery($content) {
return remove_shortcode('gallery', $content);
}
add_filter('the_content', 'remove_gallery', 6);
謝謝!我沒有返回內容。如果你可以指定要刪除的短代碼,'strip_shortcodes()'是最理想的。 – CyberJunkie 2011-12-18 05:51:00