Skip to navigation
Add an footer background to a wordpress customizer theme
28.09.19
add_action( 'customize_register', 'footer_bg_customize_register'); function footer_bg_customize_register( $wp_customize ) { $wp_customize->add_section( 'footer_bg' , array( 'title' => __( 'Footer Background', 'footerlogo' ), 'priority' => 990 )); $wp_customize->add_setting( 'footer_bg' ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize,'footer_bg',array( 'label' => 'Footer Background Image', 'section' => 'footer_bg', 'settings' => 'footer_bg', 'priority' => 2 ) ) ); }
Reply
Anonymous
Information Epoch 1732624421
Separate policy from mechanism, separate interfaces from engines.
Home
Notebook
Contact us