a2b123
a2b123

Reputation: 583

get_footer not showing for Wordpress site

For some reason my footer disappeared for my site http://juliannaspizza.com.

I checked the template file for the home page and get_footer is being called as shown below. Any idea why my footer is still not showing up?

  <?php
  /**
  * Template Name: Full Width Page
  *
  * @package Fortune
  */

 get_header();

 get_template_part( 'parts/single', 'page-header' ); ?>

<div class="container full-width-page">
<div class="row">
    <div id="primary" class="content-area col-lg-12">
        <main id="main" class="site-main" role="main">

        <?php
        while ( have_posts() ) : the_post();

            get_template_part( 'content', 'page' );

            if ( comments_open() || get_comments_number() ) {
                comments_template();
            }

        endwhile; ?>

        </main><!-- #main -->
    </div><!-- #primary -->
     </div><!-- .row -->
 </div><!-- .container -->

<?php
get_footer();

This is what my footer used to look like (https://certifagift.blog/):

footer

Upvotes: 0

Views: 1625

Answers (1)

I&#39;m Joe Too
I&#39;m Joe Too

Reputation: 5840

Your widgets are gone. From the markup, it looks like your footer (which does appear) is expecting to have widgets, but those are not appearing. Go to Appearance -> Widgets in your dashboard and add your widgets back in, and you should be good.

Upvotes: 1

Related Questions