Containers & Tools
for Enterprise WordPress

Powerful all-in-one package, optimized for creation of fast, secure and scalable websites for large businesses, mass media and even government companies.

When everything is important!

Features Overview

WP BOX includes various premade things for fast start and great success with the following:

Frontend

For Frontend Developers

  • Tailwind-based Gutenberg Blocks and Theme
  • 30+ pre-made Gutenberg blocks
  • Webpack and Gulp pipelines
  • JS code linters pre-setup
  • Simple overrides for native blocks
  • Picture tag generator for better PageSpeed Results
  • Automatic required-only dependency includes
More about frontend
Backend

For Backend Developers

  • Installation with Docker Compose
  • Built on top of Bedrock
  • MariaDB and PostgreSQL support
  • PHP code linters added to the project
  • Classes that extend native WordPress
  • Well-organized OOP structure
  • Local and production Emails with postfix relay
Backend features in detail
Marketing

Marketing And Business

  • Mobile-first layouts
  • UX that doesn’t mislead users
  • Fast-loading pages optimized for SEO
  • Multilingual without plugins
  • SEO-ready without plugins
  • Toolset for articles creations
  • Enterprise grade level website boilerplate
Show marketing features

Awesome Code Base

Use WP BOX code base, that extend native WordPress functionality while keeping outstanding performance and flexibility in building custom solutions.

<?php
namespace WPBOX\PostType;

class Product implements IPostType
{

	private static string $post_type_name = 'Product';
	
	private static string $post_type_slug = 'product';


	public function __construct()
	{
		add_action('init', [ $this, 'register' ]);
		add_action('init', [ $this, 'register_post_meta' ]);
		add_filter('init', [ $this, 'post_type_template' ]);

		add_action('generate_rewrite_rules', [ $this, 'rewrite_rules' ], 999);
	}

Backend written in OOP style

WPBOX backend is full of classes and interfaces for common WordPress objects like Post, Page, User.

It also includes custom classes that autoload Gutenberg blocks and their assets, process uploads, sends emails, interacts with third-party APIs and many other things.

Frontend with Block-based theme and developer tools

WPBOX theme includes tens of custom blocks, which you can use as is or learn from to build your custom ones – Breadcrumbs, Gallery, Sticky Menus, Single Images, Buttons and Popups.

The projects also includes everything needed for compilation. Simply add your scripts/assets to the correct folders and they will be minified, optimized or compiled and automatically enqueued when needed.

registerBlockType( metadata, {
	edit: BlockEdit,
	save: BlockSave,
} );

function BlockEdit( props ) {
	const {
		isSelected,
		clientId,
		attributes: {
			bgColor,
			uniqueId,
		},
		setAttributes,
		context: { postType: postTypeSlug },
	} = props;

	useEffect( () => {
		if ( uniqueId === 'section-id' ) {
			setAttributes( { uniqueId: clientId } );
		}
	}, [ clientId, uniqueId, setAttributes ] );
@layer components {

	.wpbox-button {
		@apply block whitespace-nowrap max-w-fit cursor-pointer text-theme-link hover:text-theme-hover border-2 rounded-md border-theme-link px-4 py-3.5 no-underline hover:bg-theme-bg-hover;
	}

	.wpbox-modal {
		@apply bg-theme-modal backdrop-blur z-40 hidden fixed left-0 top-11 md:top-14 w-full h-full justify-center items-center text-theme-base box-border;

		.wpbox-modal-inner {
			@apply bg-theme-light-gray max-w-2xl md:max-w-none w-full md:w-600 p-4 md:p-8 rounded-xl flex *:gap-4 *:basis-full flex-wrap relative space-y-6 overflow-y-auto max-h-full;
		}
	}

Integrated with Tailwind CSS

Tailwind CSS keeps the style file small and automatically removes unused CSS. To avoid unnecessary overhead, WP BOX also wraps atom elements into custom utility classes.

Custom Tailwind components like .wpbox-button can then be applied to blocks that look the same, but have different functionality. Like a button that just redirects to another page and a button that interacts with backend.

Build technically perfect websites today

Save time, money and nerves by investing in awesome code base early and be prepared when your project needs it.

50% discount applies on purchases in December 2024/January 2025. Happy New Year!

Visit pricing details page