This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ccc7f5f
Showing
6 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "webdevstudios/wds-headless-theme", | ||
"description": "WordPress theme for the Next.js WordPress Starter.", | ||
"homepage": "https://github.com/WebDevStudios/nextjs-wordpress-starter", | ||
"type": "wordpress-theme", | ||
"license": "GPL-2.0-or-later", | ||
"authors": [ | ||
{ | ||
"name": "WebDevStudios", | ||
"email": "contact@webdevstudios.com" | ||
} | ||
] | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
/** | ||
* Theme functionality. | ||
* | ||
* @author WebDevStudios | ||
* @package wds-headless-theme | ||
* @since 1.0.0 | ||
*/ | ||
|
||
// Theme functionality here. |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
/** | ||
* Redirect theme requests to frontend. | ||
* | ||
* @author WebDevStudios | ||
* @package wds-headless-theme | ||
* @since 1.0.0 | ||
*/ | ||
|
||
header( 'Location:' . HEADLESS_FRONTEND_URL, true, 303 ); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* | ||
Theme Name: WDS Headless Theme | ||
Theme URI: https://webdevstudios.com | ||
Description: This theme supports the JAMStack-powered front-end. Do not deactivate! | ||
Author: WebDevStudios <contact@webdevstudios.com> | ||
Author URI: https://webdevstudios.com/ | ||
Version: 1.0.0 | ||
Requires at least: 5.6 | ||
Tested up to: 5.8 | ||
Requires PHP: 7.4 | ||
Text Domain: wds | ||
*/ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"global": { | ||
"settings": { | ||
"typography": { | ||
"customFontSize": false, | ||
"customLineHeight": false, | ||
"dropCap": false, | ||
"fontSizes": [] | ||
}, | ||
"color": { | ||
"custom": false, | ||
"customGradient": false, | ||
"gradients": [], | ||
"palette": [] | ||
} | ||
} | ||
}, | ||
"core/paragraph": { | ||
"settings": { | ||
"color": { | ||
"custom": false, | ||
"customGradient": false | ||
} | ||
} | ||
} | ||
} |