| Server IP : 172.67.71.254 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/buzzbitesv3/public_html/wp-content/themes/bite/ |
Upload File : |
<?php
/**
* The Footer: widgets area, logo, footer menu and socials
*
* @package BITE
* @since BITE 1.0
*/
do_action( 'bite_action_page_content_end_text' );
// Widgets area below the content
bite_create_widgets_area( 'widgets_below_content' );
do_action( 'bite_action_page_content_end' );
?>
</div>
<?php
do_action( 'bite_action_after_page_content' );
// Show main sidebar
get_sidebar();
do_action( 'bite_action_content_wrap_end' );
?>
</div>
<?php
do_action( 'bite_action_after_content_wrap' );
// Widgets area below the page and related posts below the page
$bite_body_style = bite_get_theme_option( 'body_style' );
$bite_widgets_name = bite_get_theme_option( 'widgets_below_page', 'hide' );
$bite_show_widgets = ! bite_is_off( $bite_widgets_name ) && is_active_sidebar( $bite_widgets_name );
$bite_show_related = bite_is_single() && bite_get_theme_option( 'related_position', 'below_content' ) == 'below_page';
if ( $bite_show_widgets || $bite_show_related ) {
if ( 'fullscreen' != $bite_body_style ) {
?>
<div class="content_wrap">
<?php
}
// Show related posts before footer
if ( $bite_show_related ) {
do_action( 'bite_action_related_posts' );
}
// Widgets area below page content
if ( $bite_show_widgets ) {
bite_create_widgets_area( 'widgets_below_page' );
}
if ( 'fullscreen' != $bite_body_style ) {
?>
</div>
<?php
}
}
do_action( 'bite_action_page_content_wrap_end' );
?>
</div>
<?php
do_action( 'bite_action_after_page_content_wrap' );
// Don't display the footer elements while actions 'full_post_loading' and 'prev_post_loading'
if ( ( ! bite_is_singular( 'post' ) && ! bite_is_singular( 'attachment' ) ) || ! in_array ( bite_get_value_gp( 'action' ), array( 'full_post_loading', 'prev_post_loading' ) ) ) {
// Skip link anchor to fast access to the footer from keyboard
?>
<span id="footer_skip_link_anchor" class="bite_skip_link_anchor"></span>
<?php
do_action( 'bite_action_before_footer' );
// Footer
$bite_footer_type = bite_get_theme_option( 'footer_type' );
if ( 'custom' == $bite_footer_type && ! bite_is_layouts_available() ) {
$bite_footer_type = 'default';
}
get_template_part( apply_filters( 'bite_filter_get_template_part', "templates/footer-" . sanitize_file_name( $bite_footer_type ) ) );
do_action( 'bite_action_after_footer' );
}
?>
<?php do_action( 'bite_action_page_wrap_end' ); ?>
</div>
<?php do_action( 'bite_action_after_page_wrap' ); ?>
</div>
<?php do_action( 'bite_action_after_body' ); ?>
<?php wp_footer(); ?>
</body>
</html>