1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php /** * Footer file in case of the elementor way * * @package header-footer-elementor * @since 1.2.0 */
?>
<?php do_action( 'hfe_footer_before' ); ?> <?php do_action( 'hfe_footer' ); ?> </div><!-- #page --> <?php wp_footer(); ?> </body> </html>
|