summaryrefslogtreecommitdiff
path: root/template-parts/footer/builder/desktop-builder-layout.php
blob: ef9306415d684fe07d25ea52d9639339ffd1bd24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
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 -->