![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/confenda.com/wp-content/themes/the-conference/inc/customizer/sections/ |
<?php /** * Footer Setting * * @package The Conference */ function the_conference_customize_register_footer( $wp_customize ) { $wp_customize->add_section( 'footer_settings', array( 'title' => __( 'Footer Settings', 'the-conference' ), 'priority' => 150, 'capability' => 'edit_theme_options', ) ); /** Footer Copyright */ $wp_customize->add_setting( 'footer_copyright', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', 'transport' => 'postMessage' ) ); $wp_customize->add_control( 'footer_copyright', array( 'label' => __( 'Footer Copyright Text', 'the-conference' ), 'section' => 'footer_settings', 'type' => 'textarea', ) ); $wp_customize->selective_refresh->add_partial( 'footer_copyright', array( 'selector' => '.site-info .copyright', 'render_callback' => 'the_conference_get_footer_copyright', ) ); } add_action( 'customize_register', 'the_conference_customize_register_footer' );