Skip to main content

Remove Yoast SEO WordPress titles and descriptions in MySQL FAST

I needed to delete all custom titles and descriptions fast from Yoast plugin for WordPress.

To do it, I used these SQL queries in MySQL

DELETE FROM wp_postmeta where meta_key = '_yoast_wpseo_title'
DELETE FROM wp_postmeta where meta_key = '_yoast_wpseo_metadesc'

Make sure you back up your DB before doing it

Leave a Reply