@demirell

Почему не отображается футер в Wordpress?

Всем привет. Не отображается футер в дизайне Wordpress. В чем может быть проблема?
footer
<?php
/**
 * The footer of the theme
 */
?>
<footer>
        <div class="container">
                <div class="footer-widgets">
                        <div class="f-widget">
                                <div class="widget"><h3>О сайте</h3>			
                                        <div class="textwidget">На этом сайте вы узнаете самые свежие новости из мира  крутых китайских гаджетов. Прочтете обзоры новинок, увидите подробные фото.</div>
                                </div>	
                        </div>
                        <div class="f-widget">
                                <div class="widget"><h3>Подпишись чтобы быть в курсе новинок</h3></div>				
                                    <div class="textwidget">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. <a href="#">Curabitur</a> quam augue, vehicula quis, tincidunt vel, varius vitae, nulla. Sed convallis orci. Duis libero orci, pretium a.</div>	
                        </div>
                        <div class="f-widget last">
                                <div class="widget">		<h3>Счетчик активности</h3>		<ul>
                                        <li><a href="#">Porttitor Lectus Tincidunt Elementum Nascetur Montes</a></li>
                                        <li><a href="#">Mauris Dictum Libero Id Justo Fusce In Est</a></li>
                                        <li><a href="#">Cum Sociis Natoque Penatibus Magnis</a></li>
                                        <li><a href="#">Aliquet Pid Massa Porttitor Dictumst Ac Aenean A Dolor?</a></li>
                                        </ul>
                                </div>		
                        </div>
                        <div class="copyrights">

                                <div class="top"><a href="#">Back to Top ↑</a></div>
                        </div>
                </div><!--.footer-widgets-->
        </div><!--.container-->
</footer><!--footer-->
<?php wp_footer();?>
</body>
</html>

Index.php
<?php get_header();?>
<div id="page">
    <div class="content">
        <article class="article">
            <?php if (have_posts()) :  while (have_posts()) : the_post(); ?>
                <div id="content_box">
                    <div class="post excerpt ">
                        <header>
                            <div class="bubble"><a href="<?php comments_link();?>"><?php comments_number('0','1','%');?></a></div>
                                <h2 class="title">
                                    <a href="<?php the_permalink();?>" rel="bookmark"><?php the_title();?></a>
                                </h2>
                                <div class="post-info">
                                    <span class="theauthor"><a href="#" rel="author"><?php the_author();?></a></span>
                                        <time><?php the_time('j M Y');?></time>
                                        <span class="thecategory"><?php the_category();?></span>
                                </div>
                        </header><!--.header-->
                            <div class="post-content image-caption-format-1">
                                <a href="<?php the_permalink();?>" rel="nofollow" id="featured-thumbnail">
                                    <div class="featured-thumbnail"><?php the_post_thumbnail();?></div>
                                </a>
                                <?php the_content('Далее');?>

                            </div>
                    </div><!--.post excerpt-->                          																				
                </div>
            <?php endwhile; ?>
            <?php endif; ?>
        </article>
            <?php get_sidebar();?>	
                <div class="pnavigation2">
                   <?php wp_pagenavi();?>		
                </div>
    </div><!--#page-->
</div><!--.container-->
<?php get_footer();?>
  • Вопрос задан
  • 591 просмотр
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы