https://github.com/boldgrid/post-and-page-builder
The Post and Page Builder plugin for WordPress.
https://github.com/boldgrid/post-and-page-builder
drag font-selection front-end-web-development tinymce wordpress
Last synced: 3 months ago
JSON representation
The Post and Page Builder plugin for WordPress.
- Host: GitHub
- URL: https://github.com/boldgrid/post-and-page-builder
- Owner: BoldGrid
- License: gpl-2.0
- Created: 2016-03-02T16:35:55.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-03-25T17:34:25.000Z (3 months ago)
- Last Synced: 2025-04-04T06:05:52.968Z (3 months ago)
- Topics: drag, font-selection, front-end-web-development, tinymce, wordpress
- Language: JavaScript
- Homepage: https://www.boldgrid.com/
- Size: 25 MB
- Stars: 18
- Watchers: 8
- Forks: 7
- Open Issues: 98
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Support: support/bgtfw/class-boldgrid-editor-bgtfw-template.php
Awesome Lists containing this project
README
[](https://travis-ci.org/BoldGrid/post-and-page-builder)
[](https://raw.githubusercontent.com/BoldGrid/boldgrid-editor/master/LICENSE)
[](https://php.net)
[](https://greenkeeper.io/)Plugin Page:
[https://wordpress.org/plugins/post-and-page-builder/](https://wordpress.org/plugins/post-and-page-builder/)Official Download Link:
[https://downloads.wordpress.org/plugin/post-and-page-builder.zip](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
```