Inlocuieste text in descierea produselor in woocommerce in produsele din categoria cu id

cauta si inlocuieste textul dat la toate produsele din categoria cu un anumit id

UPDATE wp_posts p INNER JOIN wp_term_relationships tr ON p.ID = tr.object_id INNER JOIN wp_term_taxonomy tt ON tr.term_taxonomy_id = tt.term_taxonomy_id AND tt.taxonomy = 'product_cat' AND tt.term_id = [id categorie] SET p.post_content = REPLACE(p.post_content, 'text de inlocuit', 'text inlocuit') WHERE p.post_type = 'product';

magnifiercross