xm / starter_wordpress
Starter for creating WordPress sites at XM Media
Installs: 32
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 3
Type:project
Requires
- php: 8.2.*
- ext-json: *
- composer/installers: ^2.1
- oscarotero/env: ^2.1
- roave/security-advisories: dev-master
- roots/bedrock-autoloader: ^1.0
- roots/soil: ^4.0
- roots/wordpress: 6.6.2
- roots/wp-config: ^1.0
- roots/wp-password-bcrypt: ^1.0
- vlucas/phpdotenv: ^5.4
- wp-cli/wp-cli-bundle: ^2.3
- wpackagist-plugin/acf-content-analysis-for-yoast-seo: ^3.0
- wpackagist-plugin/akismet: ^5.0
- wpackagist-plugin/contact-form-7: ^5.8
- wpackagist-plugin/flamingo: ^2.0
- wpackagist-plugin/postmark-approved-wordpress-plugin: ^1.11
- wpackagist-plugin/svg-support: ^2.3
- wpackagist-plugin/wordfence: ^7.10.3
- wpackagist-plugin/wordpress-seo: ^23.4
- wpengine/advanced-custom-fields-pro: ^6.2.5
Requires (Dev)
- symfony/var-dumper: ^7.0
- wpackagist-plugin/query-monitor: ^3.7
This package is auto-updated.
Last update: 2024-11-19 23:53:49 UTC
README
- Required: composer, node, yarn
- Optional: wp-cli
- Based on https://github.com/roots/bedrock
Initial Setup
- Create a new project:
composer create-project xm/starter_wordpress project-name --stability=dev --no-install --remove-vcs
- Copy
.env.example
to.env
. - Update environment variables in the
.env
file:
- Database: define
DATABASE_URL
for using a DSN (e.g.mysql://user:password@127.0.0.1:3306/db_name
) WP_ENV
- Set to environment (development
,staging
,production
)WP_HOME
- Full URL to WordPress home (https://dev.example.com)WP_SITEURL
- Full URL to WordPress including subdirectory (https://example.com/wp)WPCOM_API_KEY
- Wordpress.com API key for Akismet and Jetpack (or other WordPress paid plugins)AUTH_KEY
,SECURE_AUTH_KEY
,LOGGED_IN_KEY
,NONCE_KEY
,AUTH_SALT
,SECURE_AUTH_SALT
,LOGGED_IN_SALT
,NONCE_SALT
from: https://roots.io/salts.htmlACF_PRO_KEY
- add ACF key
- Server setup:
- If using InterWorx or CentOS, upload
setup_dev.sh
and run:sh ./setup_dev.sh
- Upload files to the server. Don't upload (most are listed in
.gitignore
):/.git
and/.idea
- Plus the following (these will only exist if you've installed the JS or PHP packages):
/public/wp
/public/app/plugins/*
/vendor
/bin
/node_modules
- Install Composer (if not already installed)
- Add
.env
(copy.env.example
and update). - Install PHP packages/vendors:
php composer.phar install
- Run
. ./node_setup.sh
(this will setup node & install the JS packages – requires yarn to be installed). - Run
yarn dev
oryarn build
(for production) to compile JS & CSS files. - Link public to html:
rm -rf html && ln -s public html
- Create a symlink between vendor and plugin directory for ACF:
ln -s /home/<user>/dev.example.com/vendor/advanced-custom-fields/advanced-custom-fields-pro public/app/plugins/acf
- Add cron:
*/15 * * * * curl https://dev.example.com/wp/wp-cron.php
(this is every 15 minutes). The automatic cron is disabled. - Adjust permissions on the bin dir:
chmod u+x bin/*
- Install WP:
bin/wp core install --allow-root --url=https://<url> --title="<site-title>" --admin_user=<username> --admin_email=<email>
- If using InterWorx or CentOS, upload
- Update
composer.json
:name
,license
(likelyprivate
& uncommentprivate
) anddescription
@todo-wordpress - ACF now needs an auth.json file to work with composer. Get the details from https://www.advancedcustomfields.com/my-account/view-licenses/ - HS - Update
package.json
:name
,version
,git.url
,license
,private
,script.dev-server
- Install PHP packages & update locally:
composer install && composer update
- Run
yarn && yarn upgrade
locally. - Upload
composer.lock
andyarn.lock
and on the server, re-runphp composer.phar install
and. ./node_setup.sh
again. - Find and make changes near
@todo-wordpress
comments throughout the site. All changed files will need to uploaded to the server. - Access WordPress admin at
https://dev.example.com/wp/wp-admin/
- To activate all installed plugins:
bin/wp plugin activate --all
- Delete or update
README.md
andLICENSE
- Add the Postmark API key
- Create new favicons: realfavicongenerator.net
- Consider the following WordPress settings:
- Setting the homepage: create the page and then select the home page under Settings > Reading
- Dev: Settings > Reading "Discourage search engines from indexing this site" (for Dev)
System Requirements
Adding Plugins/Themes using WPackagist
For packages that are found on WPackagist and support Composer install.
- Run
composer require wpackagist-plugin/plugin-name
orcomposer require wpackagist-theme/theme-name
- Upload the
composer.json
&composer.lock
files to the server (if applicable). - Run
php composer.phar install
on the server (if applicable). - Activate and configure the plugin or theme in WordPress.
Note: for plugins installed this way, only the references to plugin
in composer.json
and composer.lock
are committed to git.
The actual plugin files are not committed to git.
Adding Plugins/Themes not on WPackagist
Download the archive of the plugin and put in the /public/app/mu-plugins/<plugin-name>/
dir.
Add a line to .gitignore
such as !public/app/mu-plugins/plugin/
so the plugin is detected/include by git.
Commit the plugin to git. It will need to manually updated.
WordPress only looks for PHP files right inside the mu-plugins directory, and (unlike for normal plugins) not for files in subdirectories. You may need to create a proxy PHP loader file inside the mu-plugins directory (i.e. load.php). Only do this if it is not finding the plugin file on it's own, otherwise you'll get a duplication error.
<?php require WPMU_PLUGIN_DIR.'/my-plugin/my-plugin.php';
Referencing Assets
To reference assets (images, CSS files, etc) that are located in the theme, use the following function:
<?php echo ThemeHelpers::assetPath('/path/within/theme/dir.jpg'); ?>
This will use WordPress' internal path and URL generation to deal with the theme folder changing or moving. The slash at the beginning of the path is optional.
changing theme name
Updating WordPress & Plugins/Packages
To update WordPress core and all the plugins, run the following locally.
Replace 5.2.3
with the current version.
composer update && composer require roots/wordpress:5.2.3
The latest version of WordPress available can be found here: https://github.com/roots/wordpress/releases
Changing the Theme Name/Path
To change the theme name from the default default
to, for example, company
:
- Rename the theme folder.
- In
config/application.php
, update theConfig::define('WP_DEFAULT_THEME', 'default');
line. - In
webpack.base.config.js
, update all the paths referencing the theme folder, ie,public/app/themes/default/...
Commands
- Production JS/CSS build:
yarn build
- Dev JS/CSS build:
yarn dev
- Dev JS/CSS watch:
yarn watch
(files will not be versioned) - Dev JS/CSS HMR server:
yarn dev-server
(if configured) - JS Tests (Jest):
yarn test:unit
(if configured) - Linting:
- JS (ESLint):
yarn lint:js
oryarn lint:js:fix
- CSS:
yarn lint:css
oryarn lint:css:fix
- JS (ESLint):
Going Live / After Launch
- Ensure "From" / "To" addresses in Contact Forms are correct
- Remove Test Blog Post and Sample Page or Google will index these.
- Ensure "Discourage search engines from indexing this site" is unchecked under Settings > Reading
- If not using "Posts" turn off Post indexing in Yoast > Search Appearance > Content
- If not using "Posts" turn off Author indexing in Yoast > Search Appearance > Archives - otherwise Google will index a page for each user/author, whether it is being used or not.