Skip to content

Instantly share code, notes, and snippets.

@avillegasn
Created August 8, 2017 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save avillegasn/1a0bf98078939f28d8321a0839f3ae0c to your computer and use it in GitHub Desktop.
Save avillegasn/1a0bf98078939f28d8321a0839f3ae0c to your computer and use it in GitHub Desktop.
Remove <ncshare> tags from your WordPress content.
UPDATE wp_posts
SET post_content = REPLACE( REPLACE( post_content, '<ncshare>', '' ), '</ncshare>', '' )
WHERE post_content LIKE '%<ncshare>%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment