Advertisement
fahimmurshed

Disable astra footer

Jul 17th, 2021 (edited)
1,262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. add_filter('astra_is_header_footer_builder_active', 'is_header_footer_builder_active_callback');
  2. function is_header_footer_builder_active_callback(){
  3.     return false;
  4. }
  5.  
  6. add_action( 'wp', 'remove_astra_footer' );
  7. function remove_astra_footer(){
  8.     remove_action( 'astra_footer', array( Astra_Builder_Footer::get_instance(), 'footer_markup' ) );
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement