Skip to content

Instantly share code, notes, and snippets.

@iyut
Created September 22, 2023 03:16
Show Gist options
  • Save iyut/53d288e273bd92c029bd43b3b827cdb6 to your computer and use it in GitHub Desktop.
Save iyut/53d288e273bd92c029bd43b3b827cdb6 to your computer and use it in GitHub Desktop.
Deactivate new Astra Header/Footer Builder
function theme_is_header_footer_builder_active( $is_header_footer_builder_active ) {
return false;
}
add_filter( 'astra_is_header_footer_builder_active', 'theme_is_header_footer_builder_active', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment