Site logo

Archived topic

Lock in Footer Bar

3 replies · Started by Rachel on September 24, 2019

Viewing posts 1–4 of 4

Hi there,

Is there anyway to hide or lock in the copyright section? I don't want the client to be able to change anything on the footer bar (they will have full admin rights) but still allow them to update the info on the footer widgets. Is it possible to hide customizer menu layout>footer>copyright section? Or if necessary, to hide layout>footer customizer menu completely? Thanks!

Hi there,

Give this PHP a shot:

add_action( 'customize_register', function( $wp_customize ) {
    $wp_customize->remove_control( 'generate_copyright' );
}, 20 );

Let me know :)

Thank you, Tom! That worked perfectly. :)

You're welcome :)

This archived topic is closed to new replies.