Skip to content

Adding Customize Fields

TruongSa edited this page Dec 17, 2017 · 2 revisions

Add your custom fields.

function customify_customizer_config($configs)
{
    $config = array(

        array(
            // your field here
        )
        // More fields here
    );

    return array_merge($configs, $config);
}
add_filter('customify/customizer/config', 'customify_customizer_config');

You can see all fields here

Clone this wiki locally