-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feat/i18n-tax-cpt
- Loading branch information
Showing
22 changed files
with
24,526 additions
and
65 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
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
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,44 @@ | ||
#!/bin/bash | ||
# WordPress theme starting bash script for Air-light, ported for Pop!_OS, might work on Ubuntu or even Debian, or other forks. | ||
# @Author: Roni Laukkarinen | ||
# @Date: 2021-04-22 08:06:02 | ||
# @Last Modified by: Roni Äikäs | ||
# @Last Modified time: 2023-09-29 22:15:53 | ||
|
||
# Script specific vars | ||
SCRIPT_LABEL='for Pop!_OS' | ||
SCRIPT_VERSION='1.0.0 (2023-09-29)' | ||
|
||
# Vars needed for this file to function globally | ||
CURRENTFILE=`basename $0` | ||
|
||
# Determine scripts location to get imports right | ||
if [ "$CURRENTFILE" = "newtheme.sh" ]; then | ||
SCRIPTS_LOCATION="$( pwd )" | ||
source ${SCRIPTS_LOCATION}/tasks/variables.sh | ||
source ${SCRIPTS_LOCATION}/tasks/header.sh | ||
exit | ||
else | ||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" | ||
ORIGINAL_FILE=$( readlink $DIR/$CURRENTFILE ) | ||
SCRIPTS_LOCATION=$( dirname $ORIGINAL_FILE ) | ||
fi | ||
|
||
# Final note about server requirements | ||
echo "" | ||
echo "${WHITE}Using this start script requires you use the following: | ||
https://github.com/raikasdev/pop-lemp-setup | ||
https://github.com/digitoimistodude/air-light | ||
${TXTRESET}" | ||
|
||
# First, let's check updates to self | ||
source ${SCRIPTS_LOCATION}/tasks/self-update.sh | ||
|
||
# Import required tasks | ||
source ${SCRIPTS_LOCATION}/tasks/imports.sh | ||
|
||
# Replace Air-light with your theme name and other seds | ||
source ${SCRIPTS_LOCATION}/tasks/replaces-wsl.sh | ||
|
||
# The end | ||
source ${SCRIPTS_LOCATION}/tasks/footer.sh |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
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
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
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
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
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
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 |
---|---|---|
|
@@ -28,5 +28,4 @@ function air_edit_link() { | |
</a> | ||
</p> | ||
<?php | ||
|
||
} |
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
Oops, something went wrong.