lots0logs
12/12/2016 - 10:39 PM

WordPress :: Divi :: Remove Footer Credits Option From Customizer

WordPress :: Divi :: Remove Footer Credits Option From Customizer

<?php
/* DON'T copy the first line (above) if your functions.php already has it. 
 * ---------------------------------------------------------------------- */


function my_et_divi_customize_register( $wp_customize ) {
	$wp_customize->remove_control( 'et_divi[disable_custom_footer_credits]' );
	$wp_customize->remove_control( 'et_divi[custom_footer_credits]' );
}
add_action( 'customize_register', 'my_et_divi_customize_register', 20 );