@threadi
customizer.php:
function rhx_portfolio_customize_register( $wp_customize ) {
$wp_customize->remove_section(‘nav’);
$wp_customize->remove_section(‘static_front_page’);
$wp_customize->remove_section(‘title_tagline’);
$wp_customize->add_panel(‘panel_9’, array(
‘priority’ => 17,
‘capability’ => ‘edit_theme_options’,
‘theme_supports’ => ”,
‘title’ => __(‘Footer’, ‘rhx-portfolio’) ,
‘description’ => ‘aaaa’,
));
`/* ======================== Footer Below Text ===================== */
$wp_customize->add_section(‘section_35’, array(
‘title’ => ‘Footer Below’,
‘priority’ => 35,
‘panel’ => ‘panel_9’
));
/* ———————- Footer Below Text setting and control —————— */
$wp_customize->add_setting(‘footerBelow’, array(
‘capability’ => ‘edit_theme_options’,
‘default’ => __(‘Clean. Simple. Sincere’, ‘sincere’),
‘sanitize_callback’ => ‘sanitize_text_field’,
));
$wp_customize->add_control(‘footerBelow’, array(
‘type’ => ‘text’,
‘section’ => ‘section_35’,
‘label’ => __( ‘Add Footer Below Text’ )
));
}
add_action( ‘customize_register’, ‘rhx_portfolio_customize_register’ );
front-page.php
<?php echo get_theme_mod(‘footerBelow’, __(‘Clean. Simple. Sincere’, ‘sincere’) ); ?>