https://github.com/devandreacarratta/wpexportcontent
Export WordPress content to json file
https://github.com/devandreacarratta/wpexportcontent
csharp json netcore wordpress
Last synced: 6 months ago
JSON representation
Export WordPress content to json file
- Host: GitHub
- URL: https://github.com/devandreacarratta/wpexportcontent
- Owner: devandreacarratta
- Created: 2019-11-09T13:04:08.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T09:16:36.000Z (almost 3 years ago)
- Last Synced: 2023-03-06T07:17:39.921Z (over 2 years ago)
- Topics: csharp, json, netcore, wordpress
- Language: C#
- Homepage:
- Size: 913 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# WPExportContent
Export Content From WP
## Solutions
### WPExportContent.WebUI.sln
NetCore3 & MVC Web Solution - Export WP Blog from UI (minimal) Interface
### WPExportContent.sln
NetCore console app - fast test with appsettings.json for setting
#### WPExportContent - appsettings.json
```
{
"PluginExport": {
"WooCommerce": true,
"Yoast": true
},
"WPSource": {
"DB_NAME": "wpexportcontent",
"DB_USER": "root",
"DB_PASSWORD": "",
"DB_HOST": "localhost",
"TABLE_PREFIX": "wpej_"
},
"OUTFile": {
"DirtyExportFile": "z:\\wpDirtyExportFile.json",
"ExportFile": "z:\\wpExportFile.json",
"SQLServerConnection": "",
"MySQLServerConnection": "Server=XXX;Database=XXX;Uid=XXX;Pwd=XXX;Port=3306"
}
}
```
PluginExport / WooCommerce : set "true" if you want to export products (no orders)