Skip to content

BoldGrid/post-and-page-builder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f48b71f · Feb 3, 2025
Apr 7, 2023
Jan 16, 2025
Sep 13, 2024
Mar 15, 2024
May 31, 2023
Feb 3, 2025
Oct 9, 2018
Nov 18, 2021
Oct 3, 2018
Sep 7, 2023
Oct 25, 2017
Sep 28, 2016
Jun 6, 2018
May 18, 2023
May 18, 2023
Nov 6, 2019
Aug 2, 2016
Sep 13, 2024
Nov 23, 2017
Oct 23, 2017
Nov 23, 2017
Dec 12, 2024
Mar 2, 2016
Feb 3, 2025
Feb 6, 2019
Sep 7, 2023
Apr 19, 2024
Apr 19, 2024
May 18, 2023
Sep 26, 2016
Nov 23, 2017
Feb 3, 2025
Mar 15, 2024
Mar 2, 2016
Feb 3, 2025
Feb 3, 2025
May 18, 2023
Jan 16, 2025

Repository files navigation

Build Status License PHP Version Greenkeeper badge

Plugin Page: https://wordpress.org/plugins/post-and-page-builder/

Official Download Link: https://downloads.wordpress.org/plugin/post-and-page-builder.zip

Post and Page Builder

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.7

License: GPLv2 or later

License URI: http://www.gnu.org/licenses/gpl-2.0.html

Description

Post and Page Builder is a standalone plugin which adds functionality to the existing TinyMCE Editor used in the WordPress page and post editor.

Requirements

  • PHP 5.4 or higher.

Installation

  1. Upload the entire post-and-page-builder folder to the /wp-content/plugins/ directory.

  2. Activate the plugin through the Plugins menu in WordPress.

Development

Installing Dependencies

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

CSS/JS Development

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 );

Build for production

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