Download the PHP package circul8/wordpress without Composer
On this page you can find all versions of the php package circul8/wordpress. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package wordpress
Wordpress Stack
Circul8's WordPress stack based on the Root's Bedrock with some pre-installed plugins.
Installation
1. Init the project
Create a new project in a new folder:
It's important to set the ACF PRO key at the beginning otherwise the installation will fail:
2. Configure the DB
Update environment variables in .env
file:
DB_NAME
- Database nameDB_USER
- Database userDB_PASSWORD
- Database passwordDB_HOST
- Database hostWP_ENV
- Set to environment (development
,staging
,production
)WP_HOME
- Full URL to WordPress home (http://example.com)WP_SITEURL
- Full URL to WordPress including subdirectory (http://example.com/wp)AUTH_KEY
,SECURE_AUTH_KEY
,LOGGED_IN_KEY
,NONCE_KEY
,AUTH_SALT
,SECURE_AUTH_SALT
,LOGGED_IN_SALT
,NONCE_SALT
3. Others
-
Set your site vhost document root to
/web
folder e.g./path/to/site/web/
- Access WP admin at
http://example.com/wp/wp-admin
Plugins
Pre-installed plugins
- Classic Editor (activated -> MU* plugin)
- We don't use the Gutenberg.
- Disable Comments (activated -> MU* plugin)
- All comments must be disabled. We don't use this functionallity. Also, it's a security hole.
- Duplicate Post (activated -> MU* plugin)
- Administration UX tweak to easily copy/paste posts.
- Post Types Order (activated -> MU* plugin)
- Administration UX tweak to easily reorder posts.
- Tinymce Advanced (activated -> MU* plugin)
- WYSIWYG enahancement.
- Advanced Custom Fields PRO (activated -> must use)
- Most important plugin.
- Wordfence (not activated)
- This is not mandatory plugin, but recommended. Security.
- WP Mail SMTP (not activated)
- This is not mandatory plugin, but recommended,
wpmail()
is not reliable. Company policy is to use Mailgun.
- This is not mandatory plugin, but recommended,
*MU - Must Use Plugin
Installing new plugins
Installing new plugins are usually disabled on production due to security reasons, therefore use composer:
- Find the plugin at WPackagist
- Install the plugin
composer require wpackagist-plugin/akismet
Testing & Coding style
The PHPCS has been removed due to the fact this is just a scaffold for WP Headless projects that should use WP plugins only without any theme.
If additional functionality is needed, follow the Circul8 Coding Standards here.
Local development
In order to develop this project package locally, you need to:
- Clone this repo
- Do your changes in the clone
- Commit changes (do not push)
- Create
packages.json
somewhere (see bellow) - Run the
create-project
with specifiedpackages.json
(see bellow)
create-project
Don't forget to change the {YOURPATH} to your packages.json
.
packages.json
Again, don't forget to change the {YOURPATH}. This time it must lead to the cloned repository of the circul8/wordpress
. You also need to change the {YOURBRANCH} to your testing branch.
Reference
Documentation / Reference
Change log
- v2.0.0 (2020-01-28)
- Upgraded to latest Bedrock.
- Removed starter theme -> ongoing projects should be headless.
- Removed Timber plugin -> ongoing projects should be headless.
- Upgraded to the Wordpress 5.3
- All plugins updated.
- v1.0.0 (2019-03-14)
- Versioning started. Wordpress upgraded to 5.1.1.
- Fix of ACF to work with Guttenberg.
- Upgraded to latest Bedrock.
All versions of wordpress with dependencies
composer/installers Version ^1.7
vlucas/phpdotenv Version ^3.4.0
oscarotero/env Version ^1.2.0
roots/wordpress Version 5.2.3
roots/wp-config Version 1.0.0
roots/wp-password-bcrypt Version 1.0.0