'
', 'context' => 'site-footer', ) ); } add_action( 'analytica_footer_after', 'analytica_footer_markup_close', 20 ); /** * Echo the closing div tag for the footer. * * Also optionally adds wrapping div closing tag. * * @since 1.0.0 * * @uses analytica_markup() Apply contextual markup. */ function analytica_footer_markup_close() { if ( ! analytica_site_footer_is_active() ) { return; } analytica_markup( array( 'element' => '
', )); } add_action( 'analytica_footer', 'analytica_footer_menu_area', 17 ); /** * Echo the opening div tag for the footer. * * Also optionally adds wrapping div opening tag. * * @since 1.0.0 * * @uses analytica_markup() Apply contextual markup. */ function analytica_footer_menu_area() { if ( ! analytica_site_footer_is_active() || ! has_nav_menu( 'footer-menu' ) ) { return; } analytica_markup( array( 'element' => '
', 'context' => 'site-footer-menu', )); do_action( 'analytica_footer_menu' ); analytica_markup( array( 'element' => '
', )); } add_action( 'analytica_footer', 'analytica_footer_widget_areas' ); /** * Echo the markup necessary to facilitate the footer widget areas. * * Check for a numerical parameter given when adding theme support - if none is found, then the function returns early. * * The child theme must style the widget areas. * * Applies the `analytica_footer_widget_areas` filter. * * @since 1.0.0 */ function analytica_footer_widget_areas() { if ( ! analytica_site_footer_is_active() || ! analytica_site_footer_has_widgets() ) { return; } // Get footer layout $layout = analytica_get_option( 'site-footer-layout' ); $container_class = ( ! analytica_get_option( 'site-footer-width' ) ) ? 'site-footer-boxed has-container' : 'site-footer-fullwidth'; $inside = ''; $output = ''; // Get sidebar $sidebar_1 = 'footer-1'; $sidebar_2 = 'footer-2'; $sidebar_3 = 'footer-3'; $sidebar_4 = 'footer-4'; $sidebar_5 = 'footer-5'; $sidebar_before_footer_widget = analytica_get_option( 'sidebar-before-footer-widget' ); $sidebar_after_footer_widget = analytica_get_option( 'sidebar-after-footer-widget' ); if ( ! empty( $sidebar_before_footer_widget ) && is_active_sidebar( $sidebar_before_footer_widget ) ) : $inside .= ''; endif; if ( is_active_sidebar( $sidebar_1 ) || is_active_sidebar( $sidebar_2, $layout ) || is_active_sidebar( $sidebar_3, $layout ) || is_active_sidebar( $sidebar_4, $layout ) || is_active_sidebar( $sidebar_5, $layout ) ) : $inside .= ''; endif; if ( ! empty( $sidebar_after_footer_widget ) && is_active_sidebar( $sidebar_after_footer_widget ) ) : $inside .= ''; endif; if ( $inside ) { $output .= analytica_markup(array( 'element' => '
', 'context' => 'site-footer-widgets', )); $output .= $inside; $output .= '
'; } echo wp_kses( apply_filters( __FUNCTION__, $output ), analytica_get_allowed_tags() ); } /** * Load footer widget * * @return [type] [description] */ function analytica_get_dynamic_footer_sidebar( $sidebar, $layout ) { $inside = ''; // Darn you, WordPress! Gotta output buffer. ob_start(); dynamic_sidebar( $sidebar ); $widgets = ob_get_clean(); $inside .= sprintf( '', $layout, $sidebar, $widgets ); return $inside; } add_action( 'analytica_footer_after', 'analytica_back_to_top', 99 ); /** * Add theme credits * * @since 1.0.0 */ function analytica_back_to_top() { // Filter the text strings $backtotop_text = apply_filters( 'analytica_footer_backtotop_text', ''. esc_html__( 'Back to top', 'analytica' ) .'' ); $backtotop = $backtotop_text && analytica_get_option( 'site-back-to-top' ) ? sprintf( '
%s
', $backtotop_text ) : ''; echo wp_kses( apply_filters( __FUNCTION__, $backtotop ), analytica_get_allowed_tags() ); } add_action( 'analytica_do_colophon', 'analytica_colophon_content', 15 ); /** * Get colophon content * * @since 1.0.0 */ function analytica_colophon_content() { $output = $theme_credits = $site_copyright = null; if ( analytica_get_option( 'site-footer-copyright-text' ) ) { $site_copyright = sprintf( '', str_replace( '[year]', date( 'Y' ), analytica_get_option( 'site-footer-copyright-text' ) ) ); } if ( analytica_get_option( 'site-theme-badge' ) ) { $theme_credits = '
'. esc_html__( 'Powered by', 'analytica' ) .' ' . analytica()->theme_title .' and WordPress.
'; } if ( $site_copyright || $theme_credits ) { $output = ''; } echo wp_kses( apply_filters( __FUNCTION__, $output ), analytica_get_allowed_tags() ); } add_action( 'analytica_footer', 'analytica_do_colophon', 20 ); /** * Echo the contents of the colophon. * * Applies 'analytica_footer_backtotop_text', 'analytica_footer_creds_text' and 'analytica_footer_output' filters. * * For HTML5 themes, only the credits text is used (back-to-top link is dropped). * * @since 1.0.0 */ function analytica_do_colophon() { if ( ! analytica_is_site_colophon_available() ) { return; } analytica_markup( array( 'element' => '', ) ); }