Plugin Page: https://wordpress.org/plugins/post-and-page-builder/
Official Download Link: https://downloads.wordpress.org/plugin/post-and-page-builder.zip
Contributors: boldgrid, rramo012, imh_brad, timph, joemoto, jamesros161
Tags: page builder, drag and drop, tinymce, editor, landing page
Requires at least: 4.7
Tested up to: 6.6
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Post and Page Builder is a standalone plugin which adds functionality to the existing TinyMCE Editor used in the WordPress page and post editor.
- PHP 5.4 or higher.
-
Upload the entire post-and-page-builder folder to the /wp-content/plugins/ directory.
-
Activate the plugin through the Plugins menu in WordPress.
Before you can use the development version of this plugin you must install the dependencies.
First, install Node version 10 if necessary, and set the build to use it.
nvm install 10
nvm use 10
Then, proceed to install the dependencies.
composer install
yarn install
If you plan on modifying any front end assets you will need to start the webpack dev server.
# Run localhost:4000 with hot reload
yarn dev
# Add the following to your wp-config.php
define( 'SCRIPT_DEBUG', true );
define( 'BGEDITOR_SCRIPT_DEBUG', true );
The full build is committed to github (changing soon). Before pushing up your changes, run the following command to ensure all assets are updated.
yarn build