-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwp_local_install.sh
executable file
·127 lines (80 loc) · 3.01 KB
/
wp_local_install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#!/bin/bash
# ============================
# Script to setup a blank WP install within local MAMP server.
# The install comes with a few plugins and my starter theme.
# Be sure to set your admin and other settings via the config.cfg file in the root of this folder.
#
# 1. Create a new folder within htdocs.
# 2. CD into the folder and run ‘wplocalinstall’.
# ============================
# ============================
# Variables
# ============================
sitename=${PWD##*/}
# Source the config file for universal variables
root=$(cd $(dirname $0)/ && pwd)
config_path=${root}/config.cfg
. $config_path
# ============================
# Download & Install Wordpress
# ============================
echo "Downloading and Installing Wordpress 👇"
# Download Wordpress
wp core download
# Create a WP Config File
wp config create --dbname=$sitename --dbuser=root --dbpass=root --extra-php <<PHP
define( 'WP_DEBUG', true );
PHP
# Create the database
wp db create
# Install Wordpress
wp core install --url=http://$sitename.localhost --title=$sitename --admin_user=$wp_user --admin_password=$wp_password --admin_email=$wp_email
# ============================
# Setup Plugins
# ============================
echo "Setting up plugins 🛠"
# Delete Akismet and Hello Dolly
wp plugin delete akismet
wp plugin delete hello
# Add Limit Login Attempts
wp plugin install limit-login-attempts --activate
# Add Advanced Custom Fields if a key is present in the config file
if [ ! -z "$acf_key" ]
then
acf_zip_file="$(wp plugin path)/acf-pro.zip"
wget -O ${acf_zip_file} "https://connect.advancedcustomfields.com/index.php?p=pro&a=download&k=$acf_key"
wp plugin install ${acf_zip_file} --activate
rm ${acf_zip_file}
fi
# ============================
# Setup Themes
# ============================
echo "Setting up themes 🏙"
# Download starter theme from Github
wp theme install $starter_theme
# Change theme name
mv wp-content/themes/wp-starter wp-content/themes/$sitename
# Active theme
wp theme activate $sitename
# Delete Standard WP Themes
wp theme delete twentyfifteen twentysixteen twentyseventeen
# ============================
# Setup Admin Settings
# ============================
echo "Adjusting the dashboard settings 🏡"
# Create homepage and set it as the front page
wp post delete $(wp post list --post_type=page --posts_per_page=1 --post_status=publish --pagename="sample-page" --field=ID --format=ids)
wp post create --post_type=page --post_title=Homepage --post_status=publish
wp option update show_on_front "page"
wp option update page_on_front $(wp post list --post_type=page --post_status=publish --posts_per_page=1 --pagename=homepage --field=ID --format=ids)
# Set pretty urls
wp rewrite structure '/%postname%/' --hard
wp rewrite flush --hard
# ============================
# Open Project
# ============================
# Source Code in VS Code
code wp-content/themes/$sitename -r
# Site in Chrome
/usr/bin/open -a "/Applications/Google Chrome.app" "http://$sitename.localhost"
echo 'All Set Up 🤘'