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
| # Example of Dutch 404 page support | |
| # This assumes your 404 html file is at /nl/404/index.html | |
| # Replace domain.com and CONTAINERNAME, and optionally all occurrences of projectname | |
| traefik.http.routers.projectname-nl.rule=Host(`domain.com`) && PathPrefix(`/nl`) | |
| traefik.http.routers.projectname-nl.entryPoints=https | |
| traefik.http.routers.projectname-nl.tls=true | |
| traefik.http.routers.projectname-nl.tls.certresolver=letsencrypt | |
| traefik.http.routers.projectname-nl.service=http-0-CONTAINERNAME | |
| traefik.http.routers.projectname-nl.priority=200 |
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
| <?php | |
| /* updated 2022-09-21 */ | |
| $facets = [ | |
| [ | |
| 'name' => 'test_checkboxes', | |
| 'label' => 'Test checkboxes', | |
| 'type' => 'checkboxes', | |
| 'source' => 'post_type', | |
| 'parent_term' => '', |
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
| #!/usr/bin/env node | |
| /* | |
| * Create ACF Flexible Layouts | |
| */ | |
| // Require modules. | |
| const fs = require( 'fs' ); | |
| const args = process.argv.slice( 2 ); |