Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Это мне посоветовали делать тут на форуме, версии вордпрессов были 2.9 и выше до 3.Этим запросом удаляем метки:
delete from wp_terms using wp_term_taxonomy, wp_terms where wp_term_taxonomy.taxonomy='post_tag' and wp_terms.term_id=wp_term_taxonomy.term_id
Затем удаляем связки:
DELETE FROM `wp_term_taxonomy` WHERE `taxonomy`='post_tag'
delete from `wp_terms` where `term_id` in (select `term_id` from `wp_term_taxonomy` where `count` = 0 and `taxonomy`='post_tag');
delete from `wp_term_taxonomy` where `count` = 0 and `taxonomy`='post_tag';