Package Data | |
---|---|
Maintainer Username: | marcoboom |
Package Create Date: | 2017-02-04 |
Package Last Update: | 2017-02-06 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-12-15 15:17:39 |
Package Statistics | |
---|---|
Total Downloads: | 101 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 4 |
Total Watchers: | 3 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Note: This project is just a default Laravel 5.4 setup added with some scaffoling to get wordpress as your project setup.
This project has two main goals
To achieve this we combined two great libraries from Github. For Wordpress as a dependency we use John P. Bloch's [composer added Wordpress] (https://github.com/johnpbloch/wordpress).
To access the data with an Eloquent Approad we use the outstanding library from Junio Grossi; [Corcel] (https://github.com/corcel/corcel)
Create a new composer project
composer create-project laravel-admin/wordpress my-project-name
Fill in your .env file. Notice 2 things:
Run the following artisan command to create a symbolic link for the public storage. Wordpress attachments will be stored in the default public Laravel storage.
php artisan storage:link
Now you can run the Wordpress admin from your host with the path /wp/wp-admin. The first time you have to setup your site.
...