Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
inc
/
options
/
Editing: footer.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; use \Redux; $opt_name = Constants::$theme_options; Redux::setSection( $opt_name, array( 'title' => esc_html__( 'Footer', 'koncrete' ), 'id' => 'footer_section', 'heading' => '', 'icon' => 'el el-caret-down', 'fields' => array( array( 'id' => 'footer_column', 'type' => 'select', 'title' =>esc_html__( 'Number of Columns', 'koncrete' ), 'options' => array( '1' =>esc_html__( '1 Column', 'koncrete' ), '2' =>esc_html__( '2 Columns', 'koncrete' ), '3' =>esc_html__( '3 Columns', 'koncrete' ), '4' =>esc_html__( '4 Columns', 'koncrete' ), ), 'default' => '4', ), array( 'id' => 'section-copyright-area', 'type' => 'section', 'title' => esc_html__( 'Copyright Area', 'koncrete' ), 'indent' => true, ), array( 'id' => 'copyright_area', 'type' => 'switch', 'title' => esc_html__( 'Display Copyright Area', 'koncrete' ), 'on' => esc_html__( 'Enabled', 'koncrete' ), 'off' => esc_html__( 'Disabled', 'koncrete' ), 'default' => true, ), array( 'id' => 'copyright_text', 'type' => 'textarea', 'title' => esc_html__( 'Copyright Text', 'koncrete' ), 'default' => '© Copyright Koncrete 2020. Designed and Developed by <a rel="nofollow" target="_blank" href="#">RadiusTheme</a>', 'required' => array( 'copyright_area', 'equals', true ) ), ) ) );
Save
Cancel