summaryrefslogtreecommitdiff
path: root/template-parts/footer/builder/desktop-builder-layout.php
diff options
context:
space:
mode:
Diffstat (limited to 'template-parts/footer/builder/desktop-builder-layout.php')
-rw-r--r--template-parts/footer/builder/desktop-builder-layout.php46
1 files changed, 46 insertions, 0 deletions
diff --git a/template-parts/footer/builder/desktop-builder-layout.php b/template-parts/footer/builder/desktop-builder-layout.php
new file mode 100644
index 0000000..ef93064
--- /dev/null
+++ b/template-parts/footer/builder/desktop-builder-layout.php
@@ -0,0 +1,46 @@
+<?php
+/**
+ * Template part for displaying the footer info.
+ *
+ * @link https://codex.wordpress.org/Template_Hierarchy
+ *
+ * @package Astra
+ * @since 1.0.0
+ */
+
+?>
+<footer
+<?php
+echo astra_attr(
+ 'footer',
+ array(
+ 'id' => 'colophon',
+ 'class' => join(
+ ' ',
+ astra_get_footer_classes()
+ ),
+ )
+);
+?>
+>
+ <?php
+ astra_footer_content_top();
+ ?>
+ <?php
+ /**
+ * Astra Top footer
+ */
+ do_action( 'astra_above_footer' );
+ /**
+ * Astra Middle footer
+ */
+ do_action( 'astra_primary_footer' );
+ /**
+ * Astra Bottom footer
+ */
+ do_action( 'astra_below_footer' );
+ ?>
+ <?php
+ astra_footer_content_bottom();
+ ?>
+</footer><!-- #colophon -->