symbioticwp / customizer-builder
Build Wordpress Customizer Panels, Section and Controls with a fluid interface.
Installs: 61
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=7.0
- composer/installers: ^1.0
This package is auto-updated.
Last update: 2025-03-29 01:09:47 UTC
README
Build Wordpress Customizer Panels, Section and Controls with a fluid interface.
Installation
Composer
$ composer require symbioticwp/customizer-builder
Requirements
- PHP >= 7.0
Setup
Enable dynamic class include (PSR-4 autoloading) via composer autoloader. (Hint: Check first if you don't already have the following snippet in your theme)
<?php if (file_exists($composer = __DIR__ . '/vendor/autoload.php')) { require_once $composer; }
Always use the customize_register hook to add your customizer fields.
Example
functions.php
<?php use Symbiotic\Customizer\CustomizerBuilder; add_action("customize_register", function($wp_customize) { $builder = new CustomizerBuilder($wp_customize); $builder->newPanel("post_types", "Post Types", function() use ($builder) { $builder->addSection("Posts", "Header", function() use ($builder) { $builder->addTextBox("post_title", "Post Title"); $builder->addSelect("post_style", "Post Style", [ "default" => esc_attr__("Default"), "grid" => esc_attr__("Grid"), "masonry" => esc_attr__("Masonry"), ]); }); $builder->addSection("Portfolio", "Header", function() use ($builder) { $builder->addTextBox("portfolio_title", "Portfolio Title"); $builder->addSelect("portfolio_style", "Portfolio Style", [ "default" => esc_attr__("Default"), "grid" => esc_attr__("Grid"), "masonry" => esc_attr__("Masonry"), ]); }); }); });
Now you can use the field values in your theme
<h1><?= get_theme_mod('post_title') ?></h1> <?php get_template_part('template-parts/post/loop', get_theme_mod('post_style')); ?>
How-To
Disclaimer
This repo is a fork and was originally created by SjorsO/wordpress-customizer-builder
Changelog
1.0.0
- Select2 Field added
- Added Namespacing
- Added composer.json
- Prio => 0