has_footer() ) { get_template_part( 'template-parts/footer/base' ); } } /** * Footer Top Row */ function top_footer() { if ( kadence()->display_footer_row( 'top' ) ) { kadence()->get_template( 'template-parts/footer/footer', 'row', array( 'row' => 'top' ) ); } } /** * Footer Middle Row */ function middle_footer() { if ( kadence()->display_footer_row( 'middle' ) ) { kadence()->get_template( 'template-parts/footer/footer', 'row', array( 'row' => 'middle' ) ); } } /** * Footer Bottom Row */ function bottom_footer() { if ( kadence()->display_footer_row( 'bottom' ) ) { kadence()->get_template( 'template-parts/footer/footer', 'row', array( 'row' => 'bottom' ) ); } } /** * Footer Column * * @param string $row the column row. * @param string $column the row column. */ function footer_column( $row, $column ) { kadence()->render_footer( $row, $column ); } /** * Footer HTML */ function footer_html() { $content = kadence()->option( 'footer_html_content' ); if ( $content || is_customize_preview() ) { $link_style = kadence()->option( 'footer_html_link_style' ); echo ''; } } /** * Desktop Navigation */ function footer_navigation() { ?> sub_option( 'footer_social_items', 'items' ); $title = kadence()->option( 'footer_social_title' ); $show_label = kadence()->option( 'footer_social_show_label' ); $brand_colors = kadence()->option( 'footer_social_brand' ); $brand_color_class = ''; if ( 'onhover' === $brand_colors ) { $brand_color_class = ' social-show-brand-hover'; } elseif ( 'untilhover' === $brand_colors ) { $brand_color_class = ' social-show-brand-until'; } elseif ( 'always' === $brand_colors ) { $brand_color_class = ' social-show-brand-always'; } echo ''; } /** * Scroll To Top. */ function scroll_up() { if ( kadence()->option( 'scroll_up' ) ) { echo ''; echo ''; } }