singular-canvas.php
1 year ago
singular-fullwidth.php
1 year ago
theme-footer.php
1 year ago
theme-header.php
1 year ago
theme-template.php
1 year ago
theme-footer.php
27 lines
| 1 | <?php |
| 2 | if ( ! defined( 'ABSPATH' ) ) { |
| 3 | exit; // Exit if accessed directly. |
| 4 | } |
| 5 | |
| 6 | do_action('ecafe_before_footer'); ?> |
| 7 | <footer id="ecafe-footer"> |
| 8 | <?php |
| 9 | $allowed_tags = wp_kses_allowed_html( 'post' ); |
| 10 | $allowed_tags['script'] = array( |
| 11 | 'type' => true, |
| 12 | 'src' => true, |
| 13 | 'defer' => true, |
| 14 | ); |
| 15 | $allowed_tags['style'] = array( |
| 16 | 'type' => true, |
| 17 | 'media' => true, |
| 18 | ); |
| 19 | |
| 20 | echo Ecafe_Theme_Builder::instance()->ec_render_builder_data_location('footer'); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 21 | ?> |
| 22 | </footer> |
| 23 | <?php do_action('ecafe_after_footer'); ?> |
| 24 | <?php wp_footer(); ?> |
| 25 | </body> |
| 26 | </html> |
| 27 |