You are here

wordpress_tags.yml in WordPress Migrate 8.3

migrations/wordpress_tags.yml

File

migrations/wordpress_tags.yml
View source
  1. id: wordpress_tags
  2. label: Import tags from WordPress XML
  3. migration_tags:
  4. - WordPress
  5. source:
  6. plugin: url
  7. data_fetcher_plugin: http
  8. data_parser_plugin: xml
  9. item_selector: /rss/channel/wp:tag
  10. fields:
  11. -
  12. name: term_id
  13. label: WordPress term ID
  14. selector: wp:term_id
  15. -
  16. name: tag_slug
  17. label: Analogous to machine name
  18. selector: wp:tag_slug
  19. -
  20. name: tag_name
  21. label: 'Human name of term'
  22. selector: wp:tag_name
  23. ids:
  24. tag_slug:
  25. type: string
  26. process:
  27. # vid is populated dynamically.
  28. name: tag_name
  29. destination:
  30. plugin: entity:taxonomy_term
  31. migration_dependencies: {}