Remove the footer bar in GeneratePress

Remove the footer bar in GeneratePress on your child site.

Snippet Type

Execute on Child Sites

Snippet

add_action( 'after_setup_theme', 'gp_remove_footer_area' );
function gp_remove_footer_area() {
    remove_action( 'generate_footer','generate_construct_footer' );
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.