mirror of
https://github.com/Rushilwiz/dear-anon.git
synced 2025-04-22 12:59:55 -04:00
18 lines
658 B
PHP
18 lines
658 B
PHP
<?php
|
|
|
|
/**
|
|
* @param WP_Customize_Manager $wp_customize
|
|
*/
|
|
function ilovewp_customizer_background( $wp_customize ) {
|
|
$section_id = 'background_image';
|
|
$section = $wp_customize->get_section( $section_id );
|
|
|
|
$section->title = esc_html__( 'Site Background', 'podcast' );
|
|
|
|
// Move and rename Background Color control to General section of Color Scheme panel
|
|
$wp_customize->get_control( 'background_color' )->section = 'background_image';
|
|
$wp_customize->get_control( 'background_color' )->label = esc_html__( 'Background Color', 'podcast' );
|
|
}
|
|
|
|
add_action( 'customize_register', 'ilovewp_customizer_background', 20 );
|