30 lines
476 B
PHP
30 lines
476 B
PHP
</main>
|
|
|
|
<?php do_action('tailpress_content_end'); ?>
|
|
|
|
|
|
<?php do_action('tailpress_content_after'); ?>
|
|
|
|
<footer id="colophon" class="site-footer" role="contentinfo">
|
|
|
|
<?php
|
|
$current_blog_id = get_current_blog_id();
|
|
|
|
switch_to_blog(1);
|
|
$blog1_theme_path = get_template_directory();
|
|
restore_current_blog();
|
|
|
|
include($blog1_theme_path . '/template-parts/footer.php');
|
|
?>
|
|
<?php do_action('tailpress_footer'); ?>
|
|
|
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
<?php wp_footer(); ?>
|
|
|
|
</body>
|
|
|
|
</html>
|