Skip to content

Install

Alejandro Mostajo edited this page Jan 10, 2020 · 1 revision

To install, run the following composer command:

composer require 10quality/wpmvc-addon-customizer

This will download the add-on files to your project.

Setup

In your app/Config/app.php configuration file add the following add-on to the list:

    'addons' => [
        'WPMVC\Addons\Customizer\CustomizerAddon',
    ],

Create a new configuration file called app/Config/customizer.php and add the following content inside:

<?php

/**
 * Customizer configuration file.
 */
return [
];

Customizer configuration: This file will be your project's customizer configuration.

Clone this wiki locally