footer.php
753 Bytes
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after
*
* @package Understrap
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
$container = get_theme_mod( 'understrap_container_type' );
?>
<?php
if(get_post_meta(get_the_id(), 'newsletter_sign_up', true) || get_post_type( get_the_ID() ) == 'sfwd-courses' || get_post_type( get_the_ID() ) == 'resource' ){?>
<div class="newsletter">
<?php echo do_shortcode('[contact-form-7 id="37" title="Newsletter"]'); ?>
</div>
<?php } ?>
<?php get_template_part( 'sidebar-templates/sidebar', 'footerfull' ); ?>
<?php // Closing div#page from header.php. ?>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>