Created
August 21, 2017 20:43
-
-
Save ekandreas/6816a4540050f86752e3d6ba9d7816c3 to your computer and use it in GitHub Desktop.
Paths for controllers and views
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wp-content | |
└── themes | |
└── your_theme | |
├── style.css <- standard theme style.css, mandatory | |
├── index.php <- standard index theme, mandatory | |
├── views <- folder for Blade view templates | |
└── controllers <- folder for Blade controller classes | |
├── index.php <- the extended class to match index page hiearchy | |
├── single.php <- matches the request for single pages | |
└── page.php <- matches WordPress request for page hierarchy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment