├── .gitignore ├── json-to-file.php ├── crawler.php ├── README.md ├── crawler.js ├── custom-post-importer.php └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | site-urls 2 | json.txt 3 | results.json -------------------------------------------------------------------------------- /json-to-file.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 |