HOME


Mini Shell 1.0
DIR: /home/otwalrll/.trash/wp-content/themes/magplus/framework/admin/options/
Upload File :
Current File : /home/otwalrll/.trash/wp-content/themes/magplus/framework/admin/options/custom_code.php
<?php
/*
 * Custom Code
*/

$this->sections[] = array(
  'title' => esc_html__('Custom CSS', 'magplus'),
  'desc' => esc_html__('Easily add custom CSS to your website.', 'magplus'),
  'icon' => 'fa fa-css3',
  'fields' => array(

    array(
        'id'       => 'css_editor',
        'type'     => 'ace_editor',
        'title'    => esc_html__('CSS Code', 'magplus'),
        'subtitle' => esc_html__('Insert your custom CSS code right here. It will be displayed globally in the website.', 'magplus'),
        'mode'     => 'css',
        'theme'    => 'monokai',
        'desc'     => '',
        'default'  => ""
    )
  ),
);