Adds customizer support to your Genesis child theme.
- Install plugin with composer or git:
composer require devdesigns/genesis-customizer-support
git clone git@github.com:joedooley/genesis-customizer-support.git
- Activate plugin with WP CLI or from within WordPress dashboard.
wp plugin activate genesis-customizer-support
- Enable theme support for genesis-customizer-support by adding the following
snippet to your child theme's
functions.php
file.add_theme_support( 'genesis-customizer-support' );
- Minimum PHP version is 7.2.
- Switch to a config based system. This keeps control and settings configurations outside of the Register class.
- Add additional Customizer controls.
- Configure Live Preview.
- Possibly add to WordPress Plugin repository(Based on demand). Users can install via github, wp-cli, and composer already.