- Gulp clean task for JS files
- Load individual Foundation JS plugins vs. the minified version
- components
- paragraphs
- unified-twig-extensions
- field_layout
| const items = { | |
| [ | |
| id: 1, | |
| name: 'Ben' | |
| ], | |
| [ | |
| id: 2, | |
| name: 'Angel' | |
| ], | |
| [ |
| # unneccesry files | |
| wflogs | |
| package-lock.json | |
| wp-content/db/ | |
| wp-content/cache/ | |
| wp-content/backups/ | |
| # WordPress # | |
| ############ | |
| wp-config-local.php |
| <?php | |
| /** | |
| * Locate template. | |
| * | |
| * Locate the called template. | |
| * Search Order: | |
| * 1. /themes/theme/templates/$template_name | |
| * 2. /themes/theme/$template_name | |
| * 3. /plugins/plugin/templates/$template_name. | |
| * |
| <?php | |
| /** | |
| * Template loader. | |
| * | |
| * The template loader will check if WP is loading a template | |
| * for a specific Post Type and will try to load the template | |
| * from out 'templates' directory. | |
| * | |
| * @since 1.0.0 | |
| * |
| <?php | |
| /** | |
| * Get template. | |
| * | |
| * Search for the template and include the file. | |
| * | |
| * @since 1.0.0 | |
| * | |
| * @see PLUGIN_locate_template() | |
| * |
| <?php | |
| /** | |
| * Locate template. | |
| * | |
| * Locate the called template. | |
| * Search Order: | |
| * 1. /themes/theme/templates/$template_name | |
| * 2. /themes/theme/$template_name | |
| * 3. /plugins/plugin/templates/$template_name. | |
| * |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
| <?php | |
| $me = (new FacebookRequest( | |
| $session, 'GET', '/me' | |
| ))->execute()->getGraphObject(GraphUser::className()); |
| <?php | |
| $request = new FacebookRequest($session, 'GET', '/me'); | |
| $response = $request->execute(); | |
| $graphObject = $response->getGraphObject(); |