Is it possible to remove the gallery shortcode from the content before when the_content() is executed? I searched codex and found remove_shortcode( $tag ) but they show no examples.

I tried adding to functions

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

It doesnt work..

Update:

I was able to unregister the shortcode using the code below, but it also removes the content

function remove_gallery($content) {
    return remove_shortcode('gallery', $content);
}
add_filter( 'the_content', 'remove_gallery', 6); 
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Strange. remove_shortcode (codex link) doesn't take a second argument.

You're returning either the true or false return of the remove_shortcode function, not the content with the shortcode removed.

Try either something like this in that second version of your function up there:

remove_shortcode('gallery');
return $content;

Or just put

 remove_shortcode('gallery');

In your functions.php file. The previous poster suggested including the [ ]'s, which I guess is wrong.

link|improve this answer
Thanks! I wasn't returning the content. strip_shortcodes() would have been optimal if you could specify which shortcode to remove. – CyberJunkie Dec 18 '11 at 5:51
feedback

I think you should use sub string replacement like this:

function remove_gallery($content) {
    return str_replace('[gallery]', '', $content);
}
add_filter( 'the_content', 'remove_gallery', 6); 

Bear in mind, this method does not come with good performance.

update: You can unregister the shotcode in function.php by adding code:

remove_shortcode('[gallery]');
link|improve this answer
Thank you! str_replace method works unfortunately unregistering the shortcode doesn't. – CyberJunkie Dec 17 '11 at 22:25
I was able to unregister using filter with an issue. Please see update above – CyberJunkie Dec 17 '11 at 22:29
I think what you did is not correct. to remove the short code, just add this code in the function.php: remove_shortcode('[gallery]'); – bingjie2680 Dec 18 '11 at 9:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.