# WordPress Content Export

Export date: 2026-03-24 16:26:47

## Summary

- Pages: 14
- Posts: 2
- Media files: 284
- Unique images used: 4

## Structure

```
exported_content/
├── pages/          # All pages in Markdown format
├── posts/          # All posts in Markdown format
├── images/         # Empty - copy images here if needed
├── media/          # Empty - for media organization
├── manifest.json   # Complete export manifest
├── media_list.json # All media files with paths
└── README.md       # This file
```

## Markdown Files

Each Markdown file contains:
- YAML front matter with metadata (title, slug, id, dates, etc.)
- Content extracted from Elementor (if used)
- Regular WordPress content
- Image references

## Images

Check `media_list.json` for all image URLs and file paths.
Images can be copied from WordPress upload directory:
`/home/lusarhr/public_html/wp-content/uploads/`

## Next Steps

1. Review Markdown files in `pages/` and `posts/` folders
2. Check `media_list.json` for image locations
3. Copy needed images to your Laravel project
4. Import content into Laravel database
