Skip to content

Instantly share code, notes, and snippets.

@DrewAPicture
Created January 2, 2013 20:46
Show Gist options
  • Save DrewAPicture/4437842 to your computer and use it in GitHub Desktop.
Save DrewAPicture/4437842 to your computer and use it in GitHub Desktop.
Hide an old shortcode from post content after uninstalling a plugin
function hide_my_old_shortcode( $attr, $content ) {
return;
}
add_shortcode( 'my_old_shortcode', 'hide_my_old_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment