How to configure SEO data for Article

Hey @Edgard_Neto

You can use the MySQL node to modify the Yoast meta_keys in the database, after you have created the post with n8n.

Once you have the post ID of the post, you can look up in the wp_postmeta table, the meta_keys starting with _yoast that belong to the post ID just generated.

SELECT * FROM `database_name`.`wp_postmeta` WHERE (`meta_key` LIKE '%_yoast%') AND (`post_id` LIKE '%12705%') ORDER BY `meta_id` LIMIT 500 OFFSET 0;

:wink:

4 Likes