• Не отображается содержимое страницы на WP?

    @Macintosht Автор вопроса
    <?php get_header(); ?>
    <?php flat_hook_page_before(); ?>

    <?php flat_hook_page_top(); ?>

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

    <?php flat_hook_entry_before(); ?>

    <?php flat_hook_entry_top(); ?>
    <?php the_content( __( 'Continue reading ...', 'flat' ) ); ?>
    <?php wp_link_pages( array( 'before' => '' . __( 'Pages:', 'flat' ) . '', 'after' => '', 'link_before' => '', 'link_after' => '' ) ); ?>
    <?php flat_hook_entry_bottom(); ?>

    <?php flat_hook_entry_after(); ?>

    <?php comments_template(); ?>
    <?php endwhile; ?>

    <?php flat_hook_page_bottom(); ?>

    <?php flat_hook_page_after(); ?>
    <?php get_footer(); ?>