Viewing File: /home/maglabs/luchiana/wp-content/themes/floria/footer.php

<?php
/**
 * The Footer: widgets area, logo, footer menu and socials
 *
 * @package FLORIA
 * @since FLORIA 1.0
 */

							do_action( 'floria_action_page_content_end_text' );
							
							// Widgets area below the content
							floria_create_widgets_area( 'widgets_below_content' );
						
							do_action( 'floria_action_page_content_end' );
							?>
						</div>
						<?php
						
						do_action( 'floria_action_after_page_content' );

						// Show main sidebar
						get_sidebar();

						do_action( 'floria_action_content_wrap_end' );
						?>
					</div>
					<?php

					do_action( 'floria_action_after_content_wrap' );

					// Widgets area below the page and related posts below the page
					$floria_body_style = floria_get_theme_option( 'body_style' );
					$floria_widgets_name = floria_get_theme_option( 'widgets_below_page' );
					$floria_show_widgets = ! floria_is_off( $floria_widgets_name ) && is_active_sidebar( $floria_widgets_name );
					$floria_show_related = floria_is_single() && floria_get_theme_option( 'related_position' ) == 'below_page';
					if ( $floria_show_widgets || $floria_show_related ) {
						if ( 'fullscreen' != $floria_body_style ) {
							?>
							<div class="content_wrap">
							<?php
						}
						// Show related posts before footer
						if ( $floria_show_related ) {
							do_action( 'floria_action_related_posts' );
						}

						// Widgets area below page content
						if ( $floria_show_widgets ) {
							floria_create_widgets_area( 'widgets_below_page' );
						}
						if ( 'fullscreen' != $floria_body_style ) {
							?>
							</div>
							<?php
						}
					}
					do_action( 'floria_action_page_content_wrap_end' );
					?>
			</div>
			<?php
			do_action( 'floria_action_after_page_content_wrap' );

			// Don't display the footer elements while actions 'full_post_loading' and 'prev_post_loading'
			if ( ( ! floria_is_singular( 'post' ) && ! floria_is_singular( 'attachment' ) ) || ! in_array ( floria_get_value_gp( 'action' ), array( 'full_post_loading', 'prev_post_loading' ) ) ) {
				
				// Skip link anchor to fast access to the footer from keyboard
				?>
				<a id="footer_skip_link_anchor" class="floria_skip_link_anchor" href="#"></a>
				<?php

				do_action( 'floria_action_before_footer' );

				// Footer
				$floria_footer_type = floria_get_theme_option( 'footer_type' );
				if ( 'custom' == $floria_footer_type && ! floria_is_layouts_available() ) {
					$floria_footer_type = 'default';
				}
				get_template_part( apply_filters( 'floria_filter_get_template_part', "templates/footer-" . sanitize_file_name( $floria_footer_type ) ) );

				do_action( 'floria_action_after_footer' );

			}
			?>

			<?php do_action( 'floria_action_page_wrap_end' ); ?>

		</div>

		<?php do_action( 'floria_action_after_page_wrap' ); ?>

	</div>

	<?php do_action( 'floria_action_after_body' ); ?>

	<?php wp_footer(); ?>

</body>
</html>
Back to Directory File Manager